Skip to content

Commit

Permalink
ci: Add monthly schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry committed Oct 13, 2023
1 parent bf1ec1d commit 8a96463
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/composer-root-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ name: RootVersionChecker
on:
push:
branches: [ main ]
pull_request:
pull_request: ~

schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"

# See https://stackoverflow.com/a/72408109
concurrency:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ name: End-to-End Tests
on:
push:
branches: [ main ]
pull_request:
pull_request: ~
release:
types: [ created ]

schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"

# See https://stackoverflow.com/a/72408109
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ name: Lint
on:
push:
branches: [ main ]
pull_request:
pull_request: ~

schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"

# See https://stackoverflow.com/a/72408109
concurrency:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ name: Release
on:
push:
branches: [ main ]
pull_request:
pull_request: ~
release:
types: [ created ]

schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"

# See https://stackoverflow.com/a/72408109
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ name: Security
on:
push:
branches: [ main ]
pull_request:
pull_request: ~
release:
types: [ created ]
schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"

# See https://stackoverflow.com/a/72408109
concurrency:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ name: Tests
on:
push:
branches: [ main ]
pull_request:
pull_request: ~
release:
types: [ created ]
types: [ created ] ~

schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"

# See https://stackoverflow.com/a/72408109
concurrency:
Expand Down

0 comments on commit 8a96463

Please sign in to comment.