blob: fdd9dfd08bcd029090f28b8b1ba2aae718222e8c [file] [log] [blame]
Mohammed Naser688a48f2023-10-17 14:16:07 -04001name: check-pr-title
2on:
3 pull_request_target:
4 types:
5 - opened
6 - reopened
7 - edited
8 - synchronize
9
10jobs:
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