Conversation
[CI] PR 자동 라벨링 및 리마인더 워크플로우 추가
[CI] PR 자동 라벨링 및 리마인더 워크플로우 추가
|
Caution Review failedThe pull request is closed. Walkthrough두 개의 GitHub Actions 워크플로를 추가했다. 하나는 PR 리뷰 이벤트에 반응해 재사용 워크플로를 호출하여 승인 수에 따른 라벨링을 수행하고, 다른 하나는 스케줄(및 수동 트리거)로 재사용 워크플로를 호출해 PR 리마인더를 실행한다. 두 워크플로 모두 시크릿을 전달한다. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Reviewer
participant GitHub as GitHub
participant LabelerWF as Label on Approval Count (repo)
participant Reusable as reusable-label-on-approve (33-Auto/...@main)
Reviewer->>GitHub: Submit/Dismiss PR Review
GitHub-->>LabelerWF: trigger pull_request_review
LabelerWF->>Reusable: call with inputs(pr-number), secrets(ORGANIZATION_TOKEN)
Reusable-->>LabelerWF: run labeling job
LabelerWF-->>GitHub: update PR labels
note over LabelerWF,Reusable: 변경점: 재사용 워크플로 호출 기반 실행
sequenceDiagram
autonumber
participant Scheduler as Cron (UTC)
participant GitHub as GitHub
participant ReminderWF as PR Reminder (repo)
participant Reusable as reusable-pr-reminder (33-Auto/...@main)
participant Slack as Slack
Scheduler->>GitHub: 00:00 / 05:00 / 08:00
GitHub-->>ReminderWF: trigger schedule
ReminderWF->>Reusable: call with secrets(SLACK_WEBHOOK_URL)
Reusable->>Slack: send reminders via webhook
Slack-->>Reusable: response
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