Skip to content

Commit a8ac1c8

Browse files
authored
GEODE-10551: Update GitHub Actions workflows to trigger on support/2.0 branch (#7981)
Configure GitHub Actions workflow files to run on support/2.0 branch instead of develop branch. This enables automated CI/CD checks for pull requests targeting support/2.0. Changes: - Update .github/workflows/codeql.yml to trigger on support/2.0 branch - Update .github/workflows/gradle.yml to trigger on support/2.0 branch
1 parent b1247eb commit a8ac1c8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ name: "CodeQL"
3030

3131
on:
3232
push:
33-
branches: [ develop ]
33+
branches: [ support/2.0 ]
3434
pull_request:
3535
# The branches below must be a subset of the branches above
36-
branches: [ develop ]
36+
branches: [ support/2.0 ]
3737
schedule:
3838
- cron: '22 22 * * 2'
3939

.github/workflows/gradle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ name: develop
1919

2020
on:
2121
push:
22-
branches: [ "develop" ]
22+
branches: [ "support/2.0" ]
2323
pull_request:
24-
branches: [ "develop" ]
24+
branches: [ "support/2.0" ]
2525

2626
permissions:
2727
contents: read

0 commit comments

Comments
 (0)