-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (42 loc) · 1.79 KB
/
pr_verify.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
name: Add verification message to pull requests
on:
pull_request:
types: [opened, synchronize, edited, ready_for_review]
branches: [ "main" ]
workflow_dispatch:
jobs:
verify:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Retrieve version from VERSION
run: |
RELVER=$(cat VERSION | tr -d '[:space:]')
echo "RELVER=$RELVER" >> $GITHUB_ENV
- name: Retrieve app name from APPNAME
run: |
APPNAME=$(cat APPNAME)
echo "APPNAME=$APPNAME" >> $GITHUB_ENV
- name: PR comment with file
uses: thollander/actions-comment-pull-request@v2
with:
mode: upsert
comment_tag: previewComment
message: |
# PR checklist
Checklist:
- [ ] Is this release [${{ env.RELVER }}] of ${{ env.APPNAME }} and Console Settings Collector?
- [ ] Have you updated `app/${{ env.APPNAME }}.qvf` and/or `Console-Settings-Collector.qvf`?
- [ ] Have you updated the install guide for these apps?
If you wish to merge:
- Have this PR approved by a code owner
- Merge this PR into main
- Go to releases, an action will generate a draft release with docs + attached QVF
- Make any updates, then submit the release
Common issues:
- Version number missing or incorrect (./VERSION file needs updating)
- After merging, draft release doesn't update - this is usually because
the action failed due to an old draft release with the same name.
Delete the draft release, and re-run the action.