Skip to content

Commit

Permalink
Enable jobs to run on release-v1.2 (#420)
Browse files Browse the repository at this point in the history
Originally, there was no release branch for v1.2.x releases. Each
release was cut from the main. As a result jobs were targeting main
branch only. Now that we have created a release-v1.2 branch for
backporting some patches we need to manually enable jobs in the branch
to target the release branch.
  • Loading branch information
thunderboltsid committed Apr 30, 2024
1 parent 4d78273 commit d28087c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-dev.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name: Test Build
name: Build, Lint, and Test
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 @@ -3,9 +3,10 @@ name: "Code Scanning - Action"

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

Expand Down
5 changes: 3 additions & 2 deletions .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-*'
pull_request:

jobs:
security:
Expand Down

0 comments on commit d28087c

Please sign in to comment.