Skip to content

Commit

Permalink
Update CI Workflow Event Triggers
Browse files Browse the repository at this point in the history
This reflects the renaming of master to main, removal of develop and
introduction of merge queues.
  • Loading branch information
alexanderkiel committed Jun 29, 2024
1 parent 68a9c54 commit b6ea22a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ on:
- cron: '0 10 * * *' # every day at 10am
push:
branches:
- master
- develop
- main
tags:
- 'v*.*.*'
pull_request:
branches:
- master
- develop
- main
merge_group:

jobs:
fmt:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name: Coverage

on:
push:
branches:
- main
pull_request:
branches:
- develop
- main
merge_group:

jobs:
test-coverage:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ on:
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
schedule:
- cron: '34 3 * * 3'
push:
branches: [ "master" ]
pull_request:
branches:
- main
merge_group:

# Declare default permissions as read only.
permissions: read-all
Expand Down

0 comments on commit b6ea22a

Please sign in to comment.