conventional-commits.yml 427 B

1234567891011121314151617181920
  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. build:
  12. name: Conventional Commits
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: actions/checkout@v4
  16. - uses: webiny/action-conventional-commits@v1.1.0