We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1f1c11 commit 65f996aCopy full SHA for 65f996a
1 file changed
.github/workflows/ci.yaml
@@ -7,6 +7,9 @@ on:
7
branches:
8
- main
9
- 'release-*'
10
+ # ignore PRs with only documentation changes
11
+ paths-ignore:
12
+ - '**/*.md'
13
14
permissions:
15
contents: read
@@ -23,6 +26,13 @@ jobs:
23
26
validate:
24
27
uses: "./.github/workflows/lib-validate.yaml"
25
28
29
+ codeql:
30
+ permissions:
31
+ actions: read
32
+ contents: read
33
+ security-events: write
34
+ uses: "./.github/workflows/lib-codeql.yaml"
35
+
36
build:
37
needs:
38
- trivy
0 commit comments