Skip to content

Commit b72ff93

Browse files
committed
Add autofix reminder
Remind query authors to validate their changes in autofix before merging.
1 parent 9a72914 commit b72ff93

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# This workflow creates a reminder to query authors to test their queries
2+
# in autofix.
3+
name: Autofix reminder
4+
5+
permissions:
6+
contents: read
7+
pull-requests: read
8+
issues: write
9+
10+
on:
11+
pull_request:
12+
branches:
13+
- main
14+
- "rc/*"
15+
paths:
16+
- "**/*.qhelp"
17+
- "**/*.ql"
18+
- "**/*.qll"
19+
# This workflow
20+
- ".github/workflows/autofix-reminder.yml"
21+
22+
jobs:
23+
autofix-reminder:
24+
env:
25+
GITHUB_REPOSITORY: ${{ github.repository }}
26+
PR_NUMBER: ${{ github.event.number }}
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
REQUIRES_AUTOFIX_LABEL: "Autofix Validation Required"
29+
DOES_NOT_REQUIRE_AUTOFIX_LABEL: "No Autofix Validation Required"
30+
31+
runs-on: ubuntu-latest
32+
steps:
33+
- name: Save PR number
34+
run: echo "${PR_NUMBER}" > pr_number.txt
35+
shell: bash
36+
env:
37+
PR_NUMBER: ${{ github.event.number }}
38+
39+
- name: Check existing labels
40+
shell: bash
41+
run:
42+
gh api "repos/${GITHUB_REPOSITORY}/issues/${PR_NUMBER}/labels" | jq -r '.[].name' > labels.txt
43+
44+
if grep -q -x -e "${REQUIRES_AUTOFIX_LABEL}" labels.txt || grep -q -x -e "${DOES_NOT_REQUIRE_AUTOFIX_LABEL}" labels.txt; then
45+
echo "::set-output name=should_continue::false"
46+
echo "Stopping workflow due to label presence."
47+
else
48+
echo "::set-output name=should_continue::true"
49+
fi
50+
51+
- name: Add label
52+
if: steps.label_check.outputs.should_continue == 'true'
53+
run: gh api "repos/${GITHUB_REPOSITORY}/issues/${PR_NUMBER}/labels" -X POST -F labels="${REQUIRES_AUTOFIX_LABEL}"
54+
55+
- name: Comment on PR
56+
if: steps.label_check.outputs.should_continue == 'true'
57+
run: gh api "repos/${GITHUB_REPOSITORY}/issues/${PR_NUMBER}/comments" -X POST --field body="This pull request updates `.ql`, `.qll`, or `.qhelp` files, Please validate that autofixes generated based on these changes are valid. See [the documentation](https://github.com/github/codeql-team/blob/main/docs/best-practices/validating-autofix-for-query-changes.md) (internal access required). If autofix validation is not required, please add the label '${DOES_NOT_REQUIRE_AUTOFIX_LABEL}' to this pull request."

0 commit comments

Comments
 (0)