forked from Open-Code-Crafters/FitFlex
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (26 loc) · 867 Bytes
/
pr-checker.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
name: PR Issue Checker
on:
pull_request:
types: [opened, edited]
jobs:
check_pr_description:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Check PR Description
id: check_pr_description
run: |
PR_DESCRIPTION="${{ github.event.pull_request.body }}"
if [[ -z "$PR_DESCRIPTION" ]]; then
echo "PR description is missing."
exit 1
fi
if [[ ! "$PR_DESCRIPTION" =~ Fixes\ #[0-9]+ ]]; then
echo "The PR description should include 'Fixes #<issue-number>' if not addressing any issue."
echo "##[error]Fixes #NEW must be included in the description."
exit 1
fi
echo "PR description is valid."
- name: Output result
run: echo "All checks passed."