Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "webcoder CodeQL config"

# Exclude vendored / generated / build-time tooling from CodeQL analysis.
#
# Rationale:
# * backend/venv - generated Python virtualenv (third-party
# packages, e.g. Django REST Framework static
# JS). Already git-ignored and purged from VCS
# in #78; excluded defensively so a stray local
# venv can never re-pollute the scan.
# * frontend/webcoder_ui/config
# * frontend/webcoder_ui/scripts
# - Create React App (react-scripts) *ejected*
# boilerplate. These are build-time Node tools
# whose file paths come from developer/CI env
# vars (NODE_ENV, SSL_CRT_FILE, .env files),
# not from attacker-reachable input. Treating
# them as application source produces
# build-tooling false positives.
paths-ignore:
- backend/venv
- frontend/webcoder_ui/config
- frontend/webcoder_ui/scripts
3 changes: 2 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ jobs:
actions: read
contents: read
security-events: write
uses: Prekzursil/quality-zero-platform/.github/workflows/reusable-codeql.yml@fbb2255753788b93cc79ec917c764d0fc4f52146
uses: Prekzursil/quality-zero-platform/.github/workflows/reusable-codeql.yml@b95033002271d49cf6526e19baba506fd2419c07
with:
repo_slug: ${{ github.repository }}
event_name: ${{ github.event_name }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}
platform_repository: Prekzursil/quality-zero-platform
platform_ref: main
codeql_config_file: ./.github/codeql/codeql-config.yml
Loading