Skip to content

Commit 2e403e4

Browse files
committed
fix(ci): remove path filters from CodeQL workflow to unblock dependency PRs
Repository ruleset requires CodeQL checks on all PRs, but the workflow had path filters that prevented it from running on dependency updates (package.json/package-lock.json changes). This blocked Dependabot PRs. Removing path filters ensures CodeQL runs on all PRs including dependency updates, which is important for security scanning.
1 parent 5604e11 commit 2e403e4

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,8 @@ name: CodeQL
33
on:
44
push:
55
branches: [main]
6-
paths:
7-
- 'packages/**/*.ts'
8-
- '.github/workflows/**'
9-
- '.github/codeql/**'
106
pull_request:
117
branches: [main]
12-
paths:
13-
- 'packages/**/*.ts'
14-
- '.github/workflows/**'
15-
- '.github/codeql/**'
168
schedule:
179
- cron: '30 4 * * 1' # Weekly on Monday at 4:30 AM UTC
1810

0 commit comments

Comments
 (0)