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 c65df35 commit d62670fCopy full SHA for d62670f
.github/workflows/integration.yaml
@@ -7,21 +7,19 @@ jobs:
7
linelint:
8
runs-on: ubuntu-latest
9
steps:
10
- - uses: actions/checkout@v4
11
- with:
12
- fetch-depth: 0
+ - uses: actions/checkout@v5
13
14
# PR 라벨 확인
15
- name: Get PR labels
16
id: pr-labels
17
run: |
18
echo "🔍 PR 번호: ${{ github.event.pull_request.number }}"
19
pr_number="${{ github.event.pull_request.number }}"
20
-
+
21
echo "📋 PR 라벨 조회 중..."
22
labels_json=$(gh pr view $pr_number --json labels -q '.labels[].name')
23
echo "확인된 라벨: $labels_json"
24
25
if [ -n "$labels_json" ]; then
26
has_maintenance=$(echo $labels_json | grep -q 'maintenance' && echo 'true' || echo 'false')
27
echo "maintenance 라벨 포함 여부: $has_maintenance"
0 commit comments