Skip to content

Commit

Permalink
Only run CodeQL when Python files change
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Nov 10, 2023
1 parent dfb497c commit 3ac52fc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request: {}
paths:
- .github/workflows/codeql-analysis.yml
- '**.py' # Any Python file
pull_request:
paths:
- .github/workflows/codeql-analysis.yml
- '**.py' # Any Python file
schedule:
- cron: '37 10 * * 5'

Expand Down

0 comments on commit 3ac52fc

Please sign in to comment.