Conversation
[CI] PR 자동 라벨링 및 리마인더 워크플로우 추가
[CI] PR 자동 라벨링 및 리마인더 워크플로우 추가
|
Caution Review failedThe pull request is closed. Walkthrough두 개의 GitHub Actions 워크플로우가 추가되어 PR 리뷰 이벤트(승인/취소) 시 재사용 워크플로우를 호출하고, 일정/수동 트리거로 PR 리마인더 재사용 워크플로우를 호출합니다. 조직 시크릿과 PR 번호 등이 전달되며, 애플리케이션 코드나 공개 API 변경은 없습니다. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant GH as GitHub
participant WF as labeler.yml
participant RW as Reusable: label-on-approve
participant PR as Pull Request
GH->>WF: pull_request_review (submitted/dismissed)
WF->>RW: Call with pr-number, ORGANIZATION_TOKEN
RW-->>PR: Add/Update labels
note over WF,RW: 재사용 워크플로우 위임 기반 처리
sequenceDiagram
autonumber
participant GH as GitHub (Cron/Dispatch)
participant WF as pr-reminder.yml
participant RW as Reusable: pr-reminder
participant Slack as Slack Webhook
GH->>WF: schedule / workflow_dispatch
WF->>RW: Call with SLACK_WEBHOOK_URL (secret)
RW->>Slack: Send reminder message
note over GH: Cron(UTC) → KST 09:00/14:00/17:00 대응
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (2)
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.
Dev브랜치를 업데이트합니다
Summary by CodeRabbit