Skip to content

Commit

Permalink
Add scheduled build to CI (#1137)
Browse files Browse the repository at this point in the history
In #1134 I moved the build to GitHub actions, but forgot to make it run
builds every workday. This change runs the build on a schedule.
  • Loading branch information
tombruijn authored Jul 2, 2024
1 parent 71846b4 commit c646fe7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,9 @@
---
name: Ruby gem CI
'on':
push:
branches:
- main
- develop
pull_request:
types:
- opened
- reopened
- synchronize
push: {}
schedule:
- cron: 0 0 * * 1-5
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: "${{ !contains(github.ref, 'main')}}"
Expand Down
12 changes: 3 additions & 9 deletions build_matrix.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
github:
name: Ruby gem CI
"on":
push:
branches:
- "main"
- "develop"
pull_request:
types:
- opened
- reopened
- synchronize
push: {}
schedule:
- cron: "0 0 * * 1-5"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit c646fe7

Please sign in to comment.