feat: add verbose option #89
Workflow file for this run
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
name: Commitlint | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
jobs: | |
commitlint: | |
runs-on: ubuntu-latest | |
name: Commitlint | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run commitlint | |
uses: ./ # Uses an action in the root directory | |
# or use a released GitHub Action | |
# uses: opensource-nepal/[email protected] | |
with: | |
verbose: true |