Skip to content

Commit

Permalink
Run function deploy integration test every 2 hours. (#4844)
Browse files Browse the repository at this point in the history
  • Loading branch information
taeold committed Aug 9, 2022
1 parent a2ecf29 commit fc9e653
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/functions.yaml
Expand Up @@ -2,9 +2,15 @@ name: Functions deploy test

# Allow workflow to be triggered manually.
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
on: workflow_dispatch
on:
workflow_dispatch:
schedule:
# Run the action every 2 hours.
# * is a special character in YAML so you have to quote this string
- cron: "0 */2 * * *"

concurrency:
# Limit at most 1 runs
group: functions-deploy-${{ github.ref }}

env:
Expand Down

0 comments on commit fc9e653

Please sign in to comment.