chore: approve Dependabot PRs before attempting to merge #90
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: Conventional Commit Check | |
| on: [pull_request] | |
| jobs: | |
| conventional-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const {data: pr} = await github.rest.pulls.get({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| pull_number: context.issue.number, | |
| }) | |
| const allowed = ["feat\\!", "feat", "fix", "chore", "docs", "build", "test", "revert"] | |
| const re = new RegExp(`^(` + allowed.join('|') + `)(\\(\\w+\\))?: `) | |
| const title = pr['title'] | |
| if (!re.test(title)) { | |
| throw new Error(`PR title "${title}" does not match conventional commits filter: ${re}`) | |
| } |