Skip to content

Commit

Permalink
chore(GHA): Add cron job for {coq-demo.yml, python-demo.yml} (#72)
Browse files Browse the repository at this point in the history
& make `on.push.branches`' values uniform.
  • Loading branch information
erikmd authored Mar 7, 2022
1 parent 54928fd commit b3a9cd5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/coq-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
pull_request:
branches:
- "**" # forall submitted Pull Requests
schedule:
# test master every day at 16:00 UTC
# cf. https://crontab.guru/
- cron: '0 16 * * *'

jobs:

# The following two jobs are standard/recommended versions, assuming
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/gha-rt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- master # forall push/merge in master
- v1 # forall push/merge in v1
pull_request:
branches:
- "**" # forall submitted Pull Requests
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/python-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ on:
push:
branches:
- master # forall push/merge in master
- v1 # forall push/merge in v1
pull_request:
branches:
- "**" # forall submitted Pull Requests
schedule:
# test master every day at 16:00 UTC
# cf. https://crontab.guru/
- cron: '0 16 * * *'

jobs:

# ######################################################################
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- master
- v1
pull_request:
branches:
- "**"
Expand Down

0 comments on commit b3a9cd5

Please sign in to comment.