ci: build, test, release lifecycle #2
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: Commit Lint | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
- trunk | |
jobs: | |
conventions: | |
name: Conventional Commits | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Code | |
- uses: webiny/action-conventional-commits@v1.3.0 | |
name: Validate Commits | |
# optional, required for private repos: | |
# with: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |