Skip to content

Commit

Permalink
codeql: only trigger on changes to core .cs and .js files
Browse files Browse the repository at this point in the history
  • Loading branch information
ilike2burnthing committed Dec 9, 2021
1 parent c758aa7 commit f794785
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down

0 comments on commit f794785

Please sign in to comment.