fix: rename CreateAction fields #94
Workflow file for this run
This file contains hidden or 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: Commit Lint | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| commit-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Lint commits | |
| uses: wagoid/commitlint-github-action@v3 | |
| - name: Block fixup commits | |
| if: ${{ github.event_name != 'merge_group' }} | |
| uses: 13rac1/[email protected] | |
| - name: Block Merge Commits | |
| if: ${{ github.event_name != 'merge_group' }} | |
| uses: Morishiri/[email protected] | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |