We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fc614b commit 3e4a6eeCopy full SHA for 3e4a6ee
1 file changed
.github/workflows/chuseok22-issue-helper.yml
@@ -0,0 +1,22 @@
1
+name: Chuseok22 Issue Branch & Commit Generator
2
+
3
+on:
4
+ issues:
5
+ types: [opened, edited]
6
7
+permissions:
8
+ issues: write
9
+ contents: read
10
11
+jobs:
12
+ generate-commit:
13
+ if: github.event.action == 'opened' || (github.event.action == 'edited' && github.event.changes.title)
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: 브랜치명 & 커밋명 생성
17
+ uses: Chuseok22/github-issue-helper@v1
18
+ with:
19
+ token: ${{secrets.GITHUB_TOKEN}}
20
+ branch_prefix: ""
21
+ max_branch_length: 100
22
+ commit_template: "${issueTitle} : feat : {변경 사항에 대한 설명} ${issueUrl}"
0 commit comments