Skip to content

Commit cea8023

Browse files
sungbin1015claude
andcommitted
fix(ci): deploy 큐 막힘 해소
- deploy.yml: cancel-in-progress true로 변경 (새 배포 시 이전 대기 취소) - notion-sync.yml: 커밋 메시지에 [skip ci] 추가 (sync push가 deploy 트리거 방지) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 827c147 commit cea8023

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ permissions:
1414
pages: write
1515
id-token: write
1616

17-
# 동시 배포 방지 (이전 배포 끝나기 전 새 push가 와도 큐 처리)
17+
# 새 배포가 시작되면 이전 대기 중인 배포는 취소
1818
concurrency:
1919
group: pages
20-
cancel-in-progress: false
20+
cancel-in-progress: true
2121

2222
jobs:
2323
build:

.github/workflows/notion-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ jobs:
4444
git config user.name "github-actions[bot]"
4545
git config user.email "github-actions[bot]@users.noreply.github.com"
4646
git add blog/
47-
git diff --staged --quiet || git commit -m "chore(blog): Notion 자동 동기화 $(date +'%Y-%m-%d')"
47+
git diff --staged --quiet || git commit -m "chore(blog): Notion 자동 동기화 $(date +'%Y-%m-%d') [skip ci]"
4848
git push

0 commit comments

Comments
 (0)