Skip to content

Commit 800fc65

Browse files
ramsessanchezclaude
andcommitted
ci: enables merge groups
Adds merge_group trigger to GitHub Actions workflows to enable automatic merge queue operations, eliminating the need for manual PR rebasing. Updated workflows: - api-level-lint.yml - codeql-analysis.yml - gradle-build.yml - sonarcloud.yml Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent cbe8ea3 commit 800fc65

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.github/workflows/api-level-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
branches: [main, support/2.x.x]
77
pull_request:
88
branches: [main, support/2.x.x]
9+
merge_group:
910

1011
jobs:
1112
lint-api-level:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
pull_request:
1818
# The branches below must be a subset of the branches above
1919
branches: [main, support/2.x.x]
20+
merge_group:
2021
schedule:
2122
- cron: '0 1 * * 4'
2223
workflow_dispatch:

.github/workflows/gradle-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Java CI with Gradle
33
on:
44
pull_request:
55
branches: [main, support/2.x.x]
6+
merge_group:
67
workflow_dispatch:
78

89
jobs:

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [main, support/2.x.x]
66
pull_request:
77
types: [opened, synchronize, reopened]
8+
merge_group:
89

910
env:
1011
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

0 commit comments

Comments
 (0)