Skip to content

Commit d62670f

Browse files
committed
ci: add job for project validation
1 parent c65df35 commit d62670f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/integration.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,19 @@ jobs:
77
linelint:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
11-
with:
12-
fetch-depth: 0
10+
- uses: actions/checkout@v5
1311

1412
# PR 라벨 확인
1513
- name: Get PR labels
1614
id: pr-labels
1715
run: |
1816
echo "🔍 PR 번호: ${{ github.event.pull_request.number }}"
1917
pr_number="${{ github.event.pull_request.number }}"
20-
18+
2119
echo "📋 PR 라벨 조회 중..."
2220
labels_json=$(gh pr view $pr_number --json labels -q '.labels[].name')
2321
echo "확인된 라벨: $labels_json"
24-
22+
2523
if [ -n "$labels_json" ]; then
2624
has_maintenance=$(echo $labels_json | grep -q 'maintenance' && echo 'true' || echo 'false')
2725
echo "maintenance 라벨 포함 여부: $has_maintenance"

0 commit comments

Comments
 (0)