fixup! docs: update action conventional commits #7
This file contains 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
# https://github.com/marketplace/actions/commit-quality-checker | |
# TEST 1 | |
# feat: update action conventional commits | |
# BREAKING CHANGE: `extends` key in config file is now used for extending other config files | |
# ING-3232 | |
# fails | |
# TEST 2 | |
# fixup! feat: update action conventional commits | |
# BREAKING CHANGE: `extends` key in config file is now used for extending other config files | |
# ING-3232 | |
# fails | |
# TEST 3 | |
# docs: update action conventional commits | |
# BREAKING CHANGE: `extends` key in config file is now used for extending other config files | |
# ING-3232 | |
# fails | |
name: Beams Commit Message Checker | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
check-commit-message: | |
runs-on: ubuntu-latest | |
name: Check commit message | |
permissions: | |
pull-requests: write # required to post pull request comments | |
contents: read # required to read commit information | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Check commit message | |
uses: actions/[email protected] |