-
Notifications
You must be signed in to change notification settings - Fork 0
ci: auto-assign, labeler 추가 (#4) #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # 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: | ||
| - wkdtnqls0506 | ||
| - Seojunhwan | ||
|
|
||
| # A number of reviewers added to the pull request | ||
| numberOfReviewers: 0 | ||
|
|
||
| # A list of assignees, overrides reviewers if set | ||
| # assignees: | ||
| # - assigneeA | ||
|
|
||
| # Draft PR에는 리뷰어를 자동 할당하지 않음 | ||
| runOnDraft: false | ||
|
|
||
| # A number of assignees to add to the pull request | ||
| # Set to 0 to add all of the assignees. | ||
| # Uses numberOfReviewers if unset. | ||
| # numberOfAssignees: 2 | ||
|
|
||
| # A list of keywords to be skipped the process that add reviewers if pull requests include it | ||
| skipKeywords: | ||
| - wip | ||
| - WIP | ||
| - draft | ||
| - DRAFT | ||
| - temp | ||
| - 임시 | ||
| - 테스트 | ||
| - test |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| # 🐛 bug - 버그 수정 관련 | ||
| 🐛 bug: | ||
| - head-branch: ['^fix/', 'fix/', 'bugfix/', 'hotfix/'] | ||
| - title: ['^fix:', '^fix\(', '^🐛'] | ||
|
|
||
| # ✨ feature - 새로운 기능 | ||
| ✨ feature: | ||
| - head-branch: ['^feat/', '^feature/', 'feat/'] | ||
| - title: ['^feat:', '^feat\(', '^✨'] | ||
|
|
||
| # 📚 docs - 문서 변경 | ||
| 📚 docs: | ||
| - head-branch: ['^docs/', 'docs/'] | ||
| - title: ['^docs:', '^docs\(', '^📚'] | ||
|
|
||
| # 💄 style - 코드 스타일 변경 | ||
| 💄 style: | ||
| - head-branch: ['^style/', 'style/'] | ||
| - title: ['^style:', '^style\(', '^💄'] | ||
|
|
||
| # ♻️ refactor - 리팩토링 | ||
| ♻️ refactor: | ||
| - head-branch: ['^refactor/', 'refactor/'] | ||
| - title: ['^refactor:', '^refactor\(', '^♻️'] | ||
|
|
||
| # 🧪 test - 테스트 추가/수정 | ||
| 🧪 test: | ||
| - head-branch: ['^test/', 'test/'] | ||
| - title: ['^test:', '^test\(', '^🧪'] | ||
|
|
||
| # 🔧 chore - 빌드 프로세스, 도구 설정 등 | ||
| 🔧 chore: | ||
| - head-branch: ['^chore/', 'chore/'] | ||
| - title: ['^chore:', '^chore\(', '^🔧'] | ||
|
|
||
| # ⚡ perf - 성능 개선 | ||
| ⚡ perf: | ||
| - head-branch: ['^perf/', 'perf/'] | ||
| - title: ['^perf:', '^perf\(', '^⚡'] | ||
|
|
||
| # 👷 ci - CI 설정 변경 | ||
| 👷 ci: | ||
| - head-branch: ['^ci/', 'ci/'] | ||
| - title: ['^ci:', '^ci\(', '^👷'] | ||
|
|
||
| # 📦 build - 빌드 시스템 변경 | ||
| 📦 build: | ||
| - head-branch: ['^build/', 'build/'] | ||
| - title: ['^build:', '^build\(', '^📦'] | ||
|
|
||
| # ⏪ revert - 이전 커밋 되돌리기 | ||
| ⏪ revert: | ||
| - head-branch: ['^revert/', 'revert/'] | ||
| - title: ['^revert:', '^revert\(', '^⏪', '^Revert'] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| name: 'Auto Assign' | ||
| on: | ||
| pull_request: | ||
| types: [opened, ready_for_review] | ||
|
|
||
| jobs: | ||
| add-reviews: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: kentaro-m/auto-assign-action@v1.2.5 | ||
| with: | ||
| configuration-path: '.github/configs/auto_assign.yml' | ||
| # ref : https://github.com/marketplace/actions/auto-assign-action |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| name: 'Pull Request Labeler' | ||
|
|
||
| on: | ||
| - pull_request_target | ||
|
|
||
| jobs: | ||
| labeler: | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Apply labels based on PR content | ||
| uses: actions/labeler@v5 | ||
| with: | ||
| repo-token: '${{ secrets.GITHUB_TOKEN }}' | ||
| configuration-path: .github/labeler.yml | ||
| sync-labels: true |
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.
Uh oh!
There was an error while loading. Please reload this page.