This PR is a proposal to fix #1609 by enabling Augeas errors to be retrieved #170
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: lint commit messages | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
commitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run commitlint | |
uses: wagoid/commitlint-github-action@v5 | |
with: | |
configFile: .github/workflows/config/commitlint.config.js | |
firstParent: true |