Skip to content

Commit 5ebdb6c

Browse files
authoredNov 29, 2024··
chore: ignore path for CodeQL (#117)
1 parent 636eb28 commit 5ebdb6c

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed
 

‎.github/codeql-config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
paths-ignore:
2+
- 'test/projects/broken/**/*'

‎.github/workflows/codeql-analysis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CodeQL Analysis
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- v*
8+
pull_request:
9+
10+
jobs:
11+
codeql:
12+
name: CodeQL
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- uses: github/codeql-action/init@v3
18+
with:
19+
config-file: ./.github/codeql-config.yml

‎.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: Test
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- v*
7+
pull_request:
38

49
permissions: read-all
510

0 commit comments

Comments
 (0)
Please sign in to comment.