Skip to content

Commit

Permalink
Merge pull request #5 from Kusitms-POPTATO-DEV/fix/auto-assign
Browse files Browse the repository at this point in the history
Fix: auto-assign 파일 수정
  • Loading branch information
yeonjookang authored Oct 11, 2024
2 parents d1d0895 + 9ee382e commit 5f83205
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 21 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

21 changes: 19 additions & 2 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,19 @@
addReviewers: false
addAssignees: author
# Set to true to add reviewers to pull requests
addReviewers: true

# Set to true to add assignees to pull requests
addAssignees: author

# A list of reviewers to be added to pull requests (GitHub user name)
reviewers:
- yeonjookang
- pkl0912

# A number of reviewers added to the pull request
# Set 0 to add all the reviewers (default: 0)
numberOfReviewers: 1

# A number of assignees to add to the pull request
# Set to 0 to add all of the assignees.
# Uses numberOfReviewers if unset.
numberOfAssignees: 1
34 changes: 22 additions & 12 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
feature:
- "feature/*"
fix:
- "fix/*"
chore:
- "chore/*"
docs:
- "docs/*"
refactor:
- "refactor/*"
bug:
- "bug/*"
labels:
'fix':
include:
- '\bfix\b'
'documentation':
include:
- '\bdocs\b'
'test':
include:
- '\btest\b'
'feature':
include:
- '\bfeat\b'
'bug':
include:
- '\bbug\b'
'refactor':
include:
- '\brefactor\b'
'chore':
include:
- '\bchore\b'
10 changes: 4 additions & 6 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ on: [pull_request_target]

jobs:
label:

runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write

runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 5f83205

Please sign in to comment.