-
Notifications
You must be signed in to change notification settings - Fork 5
52 lines (43 loc) · 1.63 KB
/
semantic-pr.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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
# Linter to enforce semantic pull request titles (see https://www.conventionalcommits.org/)
---
name: 🔍 Semantic PR
on:
pull_request_target:
branches: ["main"]
types:
- opened
- edited
- reopened
- synchronize
- ready_for_review
permissions:
pull-requests: write
jobs:
main:
name: 🔍 Check PR title
runs-on: ubuntu-latest
steps:
- name: 🔍 Run Semantic PR validation
uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
id: check_pr_title
env:
GITHUB_TOKEN: ${{ github.token }}
- name: 💬 Comment on PR
if: always() && (steps.check_pr_title.outputs.error_message != null)
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
with:
header: pr-title-check-error
message: |
Hey there and thank you for opening this pull request! 👋🏼
We require pull request titles to follow the [Conventional Commits](https://www.conventionalcommits.org/) specification and it looks like your proposed title needs to be adjusted.
Details:
```
${{ steps.check_pr_title.outputs.error_message }}
```
- name: 🗑 Delete PR comment
if: ${{ steps.check_pr_title.outputs.error_message == null }}
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
with:
header: pr-title-check-error
delete: true