Rebasing tutorials structure #16
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: Commit Check Policy | |
on: | |
push: | |
pull_request: | |
branches: 'main' | |
workflow_dispatch: | |
jobs: | |
commit-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: commit-check/commit-check-action@v1 | |
with: | |
# we don't need message conventions right now | |
message: false | |
branch: true | |
author-name: true | |
author-email: true | |
# Disable right now because it is broken. | |
# https://github.com/commit-check/commit-check/pull/141 | |
commit-signoff: false | |
job-summary: true |