Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Label on Approval Count

on:
pull_request_review:
types: [submitted, dismissed]

jobs:
call-reusable-labeler:
uses: 33-Auto/.github/.github/workflows/reusable-label-on-approve.yml@main

# with 키워드를 사용하여 input 값을 전달
with:
# github.event.pull_request.number를 통해 현재 PR 번호를 전달
pr-number: ${{ github.event.pull_request.number }}

secrets:
# ORGANIZATION_TOKEN 전달
ORGANIZATION_TOKEN: ${{ secrets.ORGANIZATION_TOKEN }}
13 changes: 13 additions & 0 deletions .github/workflows/pr-reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: PR Reminder

on:
schedule:
- cron: "0 9,14,17 * * *" # 아침 9시, 오후 2시, 오후 5시에 실행
workflow_dispatch:

jobs:
call-reusable-reminder:
uses: 33-Auto/.github/.github/workflows/reusable-pr-reminder.yml@main
secrets:
# 해당 시크릿은 조직의 시크릿에 저장되어 있음
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}