Skip to content

Commit

Permalink
fix: updating the commit checker
Browse files Browse the repository at this point in the history
  • Loading branch information
noble-varghese committed Dec 1, 2023
1 parent 6272a40 commit eaca99b
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/commit-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ name: ConventionalCommitChecker

on: [pull_request, push]

jobs:
conventional-commits-checker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: taskmedia/[email protected]
with:
# token to access GitHub API to receive PR commits
# Default: ${{ github.token }}
token: ""

- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: cd .github/conventionalcommits && npm install
- run: cd .github/conventionalcommits && npm run build --if-present
# skip merge commits
# Default: true
skip_merge: ""

- name: conventional-commits-checker
id: hello
uses: ./.github/conventionalcommits/
# skip revert commits
# Default: true
skip_revert: ""

# allow different types in commit message
# Default: fix|feat|revert
types: ""

0 comments on commit eaca99b

Please sign in to comment.