conventional-commits.yml 642 B

123456789101112131415161718192021
  1. # SPDX-FileCopyrightText: 2024 Christina Sørensen
  2. # SPDX-License-Identifier: EUPL-1.2
  3. #
  4. # SPDX-FileCopyrightText: 2023-2024 Christina Sørensen, eza contributors
  5. # SPDX-FileCopyrightText: 2014 Benjamin Sago
  6. # SPDX-License-Identifier: MIT
  7. name: Conventional Commits
  8. on:
  9. push:
  10. branches: [main]
  11. pull_request:
  12. branches: [main]
  13. concurrency:
  14. group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
  15. cancel-in-progress: true
  16. jobs:
  17. conventional-commits:
  18. runs-on: ubuntu-latest
  19. steps:
  20. - uses: actions/checkout@v4
  21. - uses: webiny/action-conventional-commits@v1.3.0