File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1212 validations :
1313 required : true
1414
15+ - type : dropdown
16+ id : branchType
17+ attributes :
18+ label : ' 📂 브랜치 타입'
19+ description : ' 기능 타입을 선택하세요'
20+ options :
21+ - feat
22+ - hotfix
23+ - refactor
24+ - test
25+ validations :
26+ required : true
27+
1528 - type : input
1629 id : branch
1730 attributes :
Original file line number Diff line number Diff line change 5454 - name : 브랜치 생성 및 푸시
5555 run : |
5656 ISSUE_NUMBER="${{ steps.create.outputs.issue }}"
57- BRANCH_NAME="${ISSUE_NUMBER}-${{ steps.issue-parser.outputs.issueparser_branch }}"
57+ BRANCH_TYPE="${{ steps.issue-parser.outputs.issueparser_branchType }}"
58+ BRANCH_NAME_INPUT="${{ steps.issue-parser.outputs.issueparser_branch }}"
59+ BRANCH_NAME="${BRANCH_TYPE}/${ISSUE_NUMBER}-${BRANCH_NAME_INPUT}"
5860 git config user.name "github-actions[bot]"
5961 git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
6062 git checkout -b "${BRANCH_NAME}"
You can’t perform that action at this time.
0 commit comments