Mohammed Naser | 688a48f | 2023-10-17 14:16:07 -0400 | [diff] [blame] | 1 | name: check-pr-title |
| 2 | on: |
| 3 | pull_request_target: |
| 4 | types: |
| 5 | - opened |
| 6 | - reopened |
| 7 | - edited |
| 8 | - synchronize |
| 9 | |
| 10 | jobs: |
| 11 | conventional-commit: |
| 12 | runs-on: ubuntu-latest |
| 13 | permissions: |
| 14 | statuses: write |
| 15 | pull-requests: write |
| 16 | steps: |
| 17 | - uses: aslafy-z/conventional-pr-title-action@v3 |
| 18 | id: pr-title-lint |
| 19 | env: |
| 20 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 21 | |
| 22 | - uses: marocchino/sticky-pull-request-comment@v2.8.0 |
| 23 | if: failure() |
| 24 | with: |
| 25 | header: commitlint-pr-title |
| 26 | message: ${{ steps.pr-title-lint.outputs.error }} |
| 27 | recreate: true |
| 28 | |
| 29 | - uses: marocchino/sticky-pull-request-comment@v2.8.0 |
| 30 | if: success() |
| 31 | with: |
| 32 | header: commitlint-pr-title |
| 33 | delete: true |