Commit syntax checker workflow
Path to file (view file on GitHub)
The original file is located at the following path:
.github / workflows / commits.yml
This GitHub Actions workflow is designed to enforce conventional commit syntax on commits and pull requests. It triggers on various pull request events and pushes to the main branch. The essential elements of this workflow are as follows:
Workflow Name
- name: Commits Syntax Checker
Triggers
- on:
- pull_request: Triggers on the following events for the
mainbranch:openedreopenededitedreview_requestedsynchronize
- push: Triggers on any push to the
mainbranch. - workflow_call: Allows the workflow to be called by other workflows.
- pull_request: Triggers on the following events for the
Jobs
- check: This job runs on the latest Ubuntu environment (
ubuntu-latest).
Steps
- Checkout Repository
- Uses the
actions/checkout@v2action to checkout the repository.
- Uses the
- Conventional Commits Check
- Uses the
webiny/action-conventional-commits@v1.0.3action to ensure that commit messages follow conventional commit standards.
- Uses the