-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create create_branch_for_issue.yml (#392)
* Create create_branch_for_issue.yml PR시 이슈 close 자동화를 위한 GitHub Action Workflow 추가 요청 * Create issue-branch.yml issue 에서 브랜치 create 할 때 생성되는 문법에 대한 config 추가합니다.
- Loading branch information
1 parent
905e674
commit 9d8fd3b
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,5 @@ | ||
branchName: '${issue.number}' | ||
branches: | ||
- label: '*' | ||
prefix: feature/ | ||
autoCloseIssue: true |
This file contains 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,15 @@ | ||
name: Create Issue Branch | ||
on: | ||
issues: | ||
types: [ assigned ] | ||
pull_request: | ||
types: [ closed ] | ||
|
||
jobs: | ||
create_issue_branch_job: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create Issue Branch | ||
uses: robvanderleek/create-issue-branch@main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |