⚙️ [기능추가][프로젝트] 프로젝트 init 및 구조 설정 #2
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
| name: Chuseok22 Issue Branch & Commit Generator | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| generate-commit: | |
| if: github.event.action == 'opened' || (github.event.action == 'edited' && github.event.changes.title) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 브랜치명 & 커밋명 생성 | |
| uses: Chuseok22/github-issue-helper@v1 | |
| with: | |
| token: ${{secrets.GITHUB_TOKEN}} | |
| branch_prefix: "" | |
| max_branch_length: 100 | |
| commit_template: "${issueTitle} : feat : {변경 사항에 대한 설명} ${issueUrl}" |