conventional-commits.yml 410 B

123456789101112131415161718
  1. name: Conventional Commits
  2. on:
  3. push:
  4. branches: [ main ]
  5. pull_request:
  6. branches: [ main ]
  7. concurrency:
  8. group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
  9. cancel-in-progress: true
  10. jobs:
  11. conventional-commits:
  12. runs-on: ubuntu-latest
  13. steps:
  14. - uses: actions/checkout@v4
  15. - uses: webiny/action-conventional-commits@v1.3.0