mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 14:23:53 +01:00
Run codeql only when js or py files are changed
This commit is contained in:
parent
93405b9b70
commit
c590d1ae44
1 changed files with 6 additions and 0 deletions
6
.github/workflows/codeql-analysis.yaml
vendored
6
.github/workflows/codeql-analysis.yaml
vendored
|
@ -14,9 +14,15 @@ name: "CodeQL"
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "master" ]
|
branches: [ "master" ]
|
||||||
|
paths:
|
||||||
|
- "**.py"
|
||||||
|
- "**.js"
|
||||||
pull_request:
|
pull_request:
|
||||||
# The branches below must be a subset of the branches above
|
# The branches below must be a subset of the branches above
|
||||||
branches: [ "master" ]
|
branches: [ "master" ]
|
||||||
|
paths:
|
||||||
|
- "**.py"
|
||||||
|
- "**.js"
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '35 4 * * 3'
|
- cron: '35 4 * * 3'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue