fix: check every config entry in a file #3922
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 Compliance | |
# This workflow runs on pull requests | |
# to make sure your commits are compliant with conventional commits. | |
# https://www.conventionalcommits.org/en/v1.0.0/ | |
on: | |
pull_request: # run on any PR | |
merge_group: # run if triggered as part of a merge queue | |
jobs: | |
validate-commits: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
checks: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Commitsar check | |
uses: aevea/commitsar@916c7b483225a30d3a17f407fa25f5b25888ea69 #v0.20.2 |