-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (70 loc) · 2.04 KB
/
lint-pr-title.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: Lint pull request title
permissions:
pull-requests: read
statuses: write
on:
pull_request:
types:
- opened
- edited
- synchronize
## Pattern to match strings as follows:
# feat(ui): add `Button` component
# ^ ^ ^
# | | |__ Subject
# | |_______ Scope
# |____________ Type
jobs:
main:
runs-on: ubuntu-latest
name: lint
steps:
- name: Validate PR title
id: lint_pr_title
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
build
chore
ci
docs
feat
fix
perf
refactor
revert
style
test
upgrade
wip
- uses: marocchino/sticky-pull-request-comment@v2
# When the previous steps fails, the workflow would stop. By adding this
# condition you can continue the execution with the populated error message.
if: always() && (steps.lint_pr_title.outputs.error_message != null)
with:
header: pr-title-lint-error
message: |
Hey there and thank you for opening this pull request! 👋🏼
We require pull request titles to be formatted as follows:
```
feat(ui): add `Button` component
^ ^ ^
| | |__ Subject
| |_______ Scope
|____________ Type
```
The current title does not match this format.
<details>
<summary>Error details 👀</summary>
```
${{ steps.lint_pr_title.outputs.error_message }}
```
</details>
# Delete a previous comment when the issue has been resolved
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
uses: marocchino/sticky-pull-request-comment@v2
with:
header: pr-title-lint-error
delete: true