-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (47 loc) · 1.69 KB
/
pr-validation.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
name: "pr-validation"
on:
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Validate PR title
id: validation
env:
REGEX: '^(fix|feat|chore)(!)?:\ .+'
run: |
PR_TITLE=$(jq -r .pull_request.title "$GITHUB_EVENT_PATH")
REGEX=$REGEX
DEPENDABOT_REGEX="^Bump\\s.+"
if [[ ! "$PR_TITLE" =~ $REGEX && ! "$PR_TITLE" =~ $DEPENDABOT_REGEX ]]; then
echo "Invalid PR title"
echo "PR_STATUS=false" >> $GITHUB_OUTPUT
exit 1
else
echo "Valid PR title"
echo "PR_STATUS=true" >> $GITHUB_OUTPUT
fi
- name: Update Status and Comment on PR
uses: actions/github-script@v6
env:
REGEX: '^(fix|feat|chore)(!)?:\ .+'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const regex = process.env.REGEX;
const context = "PR Title Validation";
const state = ${{ steps.validation.output.PR_STATUS }} ? "success" : "failure";
const description = ${{ steps.validation.output.PR_STATUS }} ? "PR title is valid." : `PR title is invalid. Ensure it matches the pattern: ${regex}`;
const prNumber = context.payload.pull_request.number;
const commitSha = context.payload.pull_request.head.sha;
// Create a status check
await github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: commitSha,
state: state,
context: validate,
description: description
});