허거덩·보드 동기화 caller 를 트리거 이벤트별 파일로 분리 - #66
Merged
Merged
Conversation
- infra 정본이 discord-pr-bot.yml(PR 알림)·discord-direct-push.yml(push)·discord-backfill.yml(dispatch), project-board-sync.yml(PR 축)·project-board-issues.yml(issues 축)으로 갈라진 데 맞춰 caller 도 같은 단위로 나눔 - 기존 caller 두 개는 pull_request 트리거만 남기고 push·workflow_dispatch·issues 는 새 caller 세 개가 맡는다. concurrency 키에서 push 용 github.sha 폴백 제거 - project-board-sync caller 의 issues:write 는 이슈 자동 할당용이라 project-board-issues caller 로 옮기고 PR 축은 권한 없이 호출 - 한 caller 에 묶여 있을 때 PR 체크 목록에 매번 skipped 로 남던 job 4개(alert-direct-push·backfill-threads·issue-to-board·issue-auto-assign)가 사라진다 - 머지 순서는 infra 정본(TeamPiKi/infra#81) 이 먼저다. 그 전에 머지되면 새 caller 가 없는 정본 파일을 가리켜 push·dispatch·issues 축이 실패한다 Claude-Session: https://claude.ai/code/session_015trpvBeQF2eX29NUht5NGU
|
Discord 스레드 연동용 메타데이터입니다. discord-pr-bot 워크플로가 자동 생성하며, 수정·삭제하면 PR 과 Discord 알림 연동이 끊깁니다. |
|
Important
This repository does not receive automatic reviews because it has fewer than 10 stars. ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Team Run ID: 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Situation
push·workflow_dispatch·issues를pull_request와 같은 파일에서 구독한다. 그래서 PR 체크 목록에 그 축의 job 이 매번 skipped 로 남았고 (core PR 기준 5개, extractor 도 같은 구성), 정본 분리 뒤에는 그 축이 아예 호출되지 않는다.Task
Action
github.sha폴백을 뺐다. 이제 이 caller 는 PR 이벤트만 받는다.Result
연관 이슈