docs: update action #5
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/check-commit-message | |
# TEST 1 | |
# feat: update action conventional commits | |
# BREAKING CHANGE: `extends` key in config file is now used for extending other config files | |
# ING-3232 | |
# success | |
# 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 | |
# success | |
name: Check Commit Message | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 | |
- name: Check commit 🧪 | |
uses: adityaa30/check-commit@master |