1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2024-12-23 08:17:25 +00:00

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

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'