codeql: only trigger on changes to core .cs and .js files

This commit is contained in:
ilike2burnthing 2021-12-09 17:36:05 +00:00 committed by GitHub
parent c758aa723d
commit f794785866
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -14,9 +14,23 @@ name: "CodeQL"
on:
push:
branches: [ master ]
paths:
- '**.cs'
- '**.js'
- Jackett/src/**
- '!Jackett/src/Jackett.Common/Indexers/**'
- '!Jackett/src/Jackett.IntegrationTests/**'
- '!Jackett/src/Jackett.Test/**'
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
paths:
- '**.cs'
- '**.js'
- Jackett/src/**
- '!Jackett/src/Jackett.Common/Indexers/**'
- '!Jackett/src/Jackett.IntegrationTests/**'
- '!Jackett/src/Jackett.Test/**'
schedule:
- cron: '00 00 * * 5'