Uh oh!
There was an error while loading. Please reload this page.
fix: promote-to-prod가 GITHUB_TOKEN 연쇄 트리거 제약에 막히던 문제 수정 - #242
Conversation
v0.0.1 태그로 실제 테스트해보니 태그는 push됐지만 prod-cd.yml이 트리거되지 않았다. GitHub Actions는 기본 GITHUB_TOKEN으로 push된 이벤트가 다른 워크플로를 연쇄 실행시키지 않도록 막아두기 때문 (무한루프 방지) — promote-to-prod.yml이 정확히 이 케이스였다. prod-cd.yml에 workflow_dispatch 트리거를 추가하고, promote-to-prod.yml이 태그 push 직후 `gh workflow run prod-cd.yml --ref <태그>`로 명시적으로 호출하도록 바꿔서 우회했다.
Warning Review limit reached
Next review available in:35 minutes You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Uh oh!
There was an error while loading. Please reload this page.
작업 배경
#241 머지 직후
v0.0.1로 실제 테스트했는데, 태그는 정상 push됐지만prod-cd.yml이 트리거되지 않았다. 원인: GitHub Actions는 기본GITHUB_TOKEN으로 push된 이벤트가 다른 워크플로를 연쇄 실행시키지 않도록 막아둔다(무한루프 방지) —promote-to-prod.yml이 정확히 이 케이스였다.변경 사항
prod-cd.ymlon.workflow_dispatch트리거 추가 (기존on.push.tags는 유지 — 로컬에서 직접 태그 push하는 경우 대비)promote-to-prod.ymlgh workflow run prod-cd.yml --ref <태그>로 명시적 호출 추가,permissions.actions: write추가영향 범위
Promote to Production워크플로를 실행해야만 발생하는 변경 — 다른 워크플로/배포 경로에 영향 없음Test Plan
Promote to Production재실행해서prod-cd.yml이 트리거되는지 확인 (이 PR 병합 직후 진행)🤖 Generated with Claude Code