conventional-commits.yml 395 B

12345678910111213141516171819
  1. name: Conventional Commits
  2. on:
  3. push:
  4. branches: [ main ]
  5. pull_request:
  6. branches: [ main ]
  7. jobs:
  8. build:
  9. name: Conventional Commits
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v2
  13. - uses: webiny/action-conventional-commits@v1.1.0
  14. # optional, required for private repos
  15. # with:
  16. # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}