docs: update action #6
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/taskmedia/action-conventional-commits/tree/main | |
# 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 | |
# fails | |
name: Action Conventional Commits Taskmedia | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Conventional Commits | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taskmedia/[email protected] | |
with: | |
# token to access GitHub API to receive PR commits | |
# Default: ${{ github.token }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# skip merge commits | |
# Default: true | |
skip_merge: "" | |
# skip revert commits | |
# Default: true | |
skip_revert: "" | |
# allow different types in commit message | |
# Default: fix|feat|revert | |
types: "feat|fix|docs|style|refactor|perf|test|chore" |