Skip to content

Dev브랜치를 업데이트합니다#7

Merged
CHOOSLA merged 4 commits into
devfrom
main
Oct 12, 2025
Merged

Dev브랜치를 업데이트합니다#7
CHOOSLA merged 4 commits into
devfrom
main

Conversation

@CHOOSLA
Copy link
Copy Markdown
Member

@CHOOSLA CHOOSLA commented Oct 12, 2025

Dev브랜치를 업데이트합니다

Summary by CodeRabbit

  • Chores
    • PR 리뷰 제출/취소 이벤트에 따라 라벨을 자동 갱신하는 자동화를 추가했습니다. 리뷰 진행 상태가 즉시 표시되어 담당자와 검토자가 빠르게 파악할 수 있습니다.
    • 정해진 시간대 및 수동 실행으로 PR 리마인더 알림을 전송하는 자동화를 도입했습니다. 미처리 PR을 줄이고 리뷰 지연을 방지하여 개발 사이클의 응답성과 가시성을 개선합니다.

CHOOSLA and others added 4 commits October 13, 2025 01:13
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Oct 12, 2025

Caution

Review failed

The pull request is closed.

Walkthrough

두 개의 GitHub Actions 워크플로우가 추가되어 PR 리뷰 이벤트(승인/취소) 시 재사용 워크플로우를 호출하고, 일정/수동 트리거로 PR 리마인더 재사용 워크플로우를 호출합니다. 조직 시크릿과 PR 번호 등이 전달되며, 애플리케이션 코드나 공개 API 변경은 없습니다.

Changes

Cohort / File(s) Change Summary
Workflow: Label on Review
.github/workflows/labeler.yml
pull_request_review(submitted, dismissed) 트리거 추가. 33-Auto/.github/.github/workflows/reusable-label-on-approve.yml@main 재사용 워크플로우 호출. 현재 PR 번호(pr-number) 전달, ORGANIZATION_TOKEN 시크릿 전달.
Workflow: PR Reminder
.github/workflows/pr-reminder.yml
일정(cron, KST 기준 09:00/14:00/17:00에 해당) 및 workflow_dispatch 트리거 추가. 33-Auto/.github/.github/workflows/reusable-pr-reminder.yml@main 호출. SLACK_WEBHOOK_URL 시크릿 전달.

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: 재사용 워크플로우 위임 기반 처리
Loading
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 대응
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Poem

토깽이 깡총, 레이블 콕 찍고, 알림은 푹- 똑딱!
새벽 크론이 톡, 점심엔 다시 톡톡.
리뷰 바람 불면, 스티커가 살포시.
슬랙에 퐁- 소식 전하고,
깃허브 밭은 오늘도 정돈 완료! 🥕✨

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch main

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4f2955a and 75b58a2.

📒 Files selected for processing (2)
  • .github/workflows/labeler.yml (1 hunks)
  • .github/workflows/pr-reminder.yml (1 hunks)

Comment @coderabbitai help to get the list of available commands and usage tips.

@CHOOSLA CHOOSLA self-assigned this Oct 12, 2025
@CHOOSLA CHOOSLA merged commit 6702ab6 into dev Oct 12, 2025
3 of 4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant