chore: dummy commit #10
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Cog action | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git config --global user.email [email protected] | |
git config --global user.name github-actions | |
echo ${{ github.event_name == 'pull_request' }} | |
- name: Conventional commit check | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: cocogitto/cocogitto-action@v3 | |
with: | |
verify: ${{ github.event.pull_request.title }} | |
- name: Conventional commit check | |
uses: cocogitto/cocogitto-action@v3 | |
with: | |
git-user: 'github-actions' | |
git-user-email: '[email protected]' | |