build(deps-dev): bump brace-expansion from 1.1.12 to 1.1.15 #13
Workflow file for this run
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: PR 제목 검증 | |
| # 스쿼시 머지 시 PR 제목이 main 커밋 메시지가 되고, release-please가 이를 읽어 | |
| # 버전을 산출한다. 따라서 PR 제목이 Conventional Commits 형식인지 검사한다. | |
| # (commitlint는 로컬 커밋만 검사 → 스쿼시되면 사라지므로 PR 제목 검증이 별도로 필요) | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: PR 제목 Conventional Commits 검사 | |
| uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| refactor | |
| perf | |
| test | |
| chore | |
| ci | |
| style | |
| build | |
| revert | |
| requireScope: false |