Skip to content

Commit

Permalink
Change target Github branches for Github Actions
Browse files Browse the repository at this point in the history
The actions would previously run against PRs that were based against
the main branch. They should run on any PR against any branch.
  • Loading branch information
thunderboltsid committed Feb 9, 2024
1 parent 3fa9d45 commit 2db71ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ env:
EXPORT_RESULT: true
on:
push:
branches: ["main"]
branches:
- main
- 'release-*'
pull_request:
branches: ["main"]
jobs:
build-container:
runs-on: ubuntu-latest
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: "Code Scanning - Action"

on:
push:
branches: [main]
branches:
- main
- 'release-*'
pull_request:
branches: [main]
schedule:
- cron: '30 1 * * 0'

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/synopsys.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Black Duck Policy Check
on:
pull_request:
push:
branches:
- main
push:
- 'release-*'

jobs:
security:
Expand Down

0 comments on commit 2db71ee

Please sign in to comment.