Skip to content

Commit

Permalink
chore(*): auto-assignee-label workflow ์ถ”๊ฐ€ (#10)
Browse files Browse the repository at this point in the history
* chore: auto-pr ์ถ”๊ฐ€

* fix: ํŒŒ์ผ๋ช… ๋ณ€๊ฒฝ

* fix: PR์— ํฌํ•จ๋œ ์ตœ์‹  ์ปค๋ฐ‹๋œ ํŒŒ์ผ ์ฒดํฌ์•„์›ƒ

* fix: ์ƒˆ๋กœ์šด ์ปค๋ฐ‹ ์ถ”๊ฐ€ ์‹œ ํŠธ๋ฆฌ๊ฑฐ ์ถ”๊ฐ€
  • Loading branch information
LeeJeongHooo authored Jun 21, 2024
1 parent c409bc5 commit 6167d25
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
enable:
issues: false
prs: true

labels:
"chore":
include:
- '\bchore\b'
"feat":
include:
- '\bfeat\b'
"docs":
include:
- '\bdocs\b'
"fix":
include:
- '\fix\b'
"test":
include:
- '\brefactor\b'
"test":
include:
- '\btest\b'
23 changes: 23 additions & 0 deletions .github/workflows/auto-assignee-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Auto Assignee Label PR

on:
pull_request:
types: [opened, synchronize]

jobs:
assign:
runs-on: ubuntu-latest
steps:
- uses: hkusu/review-assign-action@v1
with:
assignees: ${{ github.actor }}
labeler:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Check Labels
id: labeler
uses: jimschubert/labeler-action@v2
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 6167d25

Please sign in to comment.