Skip to content

Commit a613fe7

Browse files
committed
ci: add merge_group trigger to integration workflow
1 parent fa3bc63 commit a613fe7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/integration.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Integration 🔄
22

33
on:
44
pull_request:
5+
merge_group:
56

67
jobs:
78
linelint:
@@ -17,11 +18,11 @@ jobs:
1718
run: |
1819
echo "🔍 PR 번호: ${{ github.event.pull_request.number }}"
1920
pr_number="${{ github.event.pull_request.number }}"
20-
21+
2122
echo "📋 PR 라벨 조회 중..."
2223
labels_json=$(gh pr view $pr_number --json labels -q '.labels[].name')
2324
echo "확인된 라벨: $labels_json"
24-
25+
2526
if [ -n "$labels_json" ]; then
2627
has_maintenance=$(echo $labels_json | grep -q 'maintenance' && echo 'true' || echo 'false')
2728
echo "maintenance 라벨 포함 여부: $has_maintenance"

0 commit comments

Comments
 (0)