Skip to content

Commit

Permalink
fix: add "release-*" to workflows trigger events (#819)
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Zheng <patrickzheng@microsoft.com>
  • Loading branch information
Two-Hearts committed Nov 4, 2023
1 parent a0b0ee2 commit 2c8e22b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ name: "CodeQL"

on:
push:
branches: main
branches:
- main
- release-*
pull_request:
branches: main
branches:
- main
- release-*
schedule:
- cron: '38 21 * * 1'

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/license-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ name: License Checker

on:
push:
branches: main
branches:
- main
- release-*
pull_request:
branches: main
branches:
- main
- release-*

permissions:
contents: read
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ on:
# Weekly on Saturdays.
- cron: '30 1 * * 6'
push:
branches: [ main ]
branches:
- main
- release-*
paths:
- '!docs/**'
- '!specs/**'
Expand Down

0 comments on commit 2c8e22b

Please sign in to comment.