commitlint.yml 522 B

1234567891011121314151617181920
  1. name: "Commit Linter"
  2. on:
  3. pull_request:
  4. branches:
  5. - "rolling"
  6. jobs:
  7. lint-commits:
  8. runs-on: ubuntu-latest
  9. env:
  10. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  11. steps:
  12. - uses: actions/checkout@v2.3.1
  13. with:
  14. fetch-depth: 0
  15. - uses: wagoid/commitlint-github-action@v4
  16. with:
  17. configFile: .github/workflows/commitlint.config.js
  18. helpURL: https://github.com/LunarVim/LunarVim/blob/rolling/CONTRIBUTING.md#commit-messages
  19. firstParent: true