We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa3bc63 commit a613fe7Copy full SHA for a613fe7
.github/workflows/integration.yaml
@@ -2,6 +2,7 @@ name: Integration 🔄
2
3
on:
4
pull_request:
5
+ merge_group:
6
7
jobs:
8
linelint:
@@ -17,11 +18,11 @@ jobs:
17
18
run: |
19
echo "🔍 PR 번호: ${{ github.event.pull_request.number }}"
20
pr_number="${{ github.event.pull_request.number }}"
-
21
+
22
echo "📋 PR 라벨 조회 중..."
23
labels_json=$(gh pr view $pr_number --json labels -q '.labels[].name')
24
echo "확인된 라벨: $labels_json"
25
26
if [ -n "$labels_json" ]; then
27
has_maintenance=$(echo $labels_json | grep -q 'maintenance' && echo 'true' || echo 'false')
28
echo "maintenance 라벨 포함 여부: $has_maintenance"
0 commit comments