We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c27cc0 commit 6484935Copy full SHA for 6484935
.github/workflows/check-query-ids.yml
@@ -0,0 +1,21 @@
1
+name: Check query IDs
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - "**/src/**/*.ql"
7
+ - misc/scripts/check-query-ids.py
8
+ - .github/workflows/check-query-ids.yml
9
+ branches:
10
+ - main
11
+ - "rc/*"
12
+ workflow_dispatch:
13
14
+jobs:
15
+ check:
16
+ name: Check query IDs
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v3
20
+ - name: Check for duplicate query IDs
21
+ run: python3 misc/scripts/check-query-ids.py
0 commit comments