[ci-maintainer] fix: activate CodeQL SAST workflow#6278
Conversation
…bled) Fixes #6275 Signed-off-by: ci-maintainer <ci-maintainer@kubestellar.io> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
✅ Deploy Preview for kubestellar-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
Pull request overview
This PR activates CodeQL SAST by adding a properly named GitHub Actions workflow file (.github/workflows/codeql.yml), addressing the prior misnaming (.yml.disabled) that prevented the workflow from running.
Changes:
- Adds an enabled CodeQL workflow that runs on
pushtomain,pull_requesttargetingmain, and a weekly schedule. - Configures CodeQL to analyze
javascript-typescriptwith thesecurity-and-qualityquery suite.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| permissions: | ||
| contents: read | ||
| security-events: write |
| - name: Checkout repository | ||
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 |
|
Closing — |
CI Fix
PR #6274 created
.github/workflows/codeql.yml.disabledinstead of.github/workflows/codeql.yml. GitHub Actions ignores.disabledfiles,so SAST was never running despite the workflow being present.
This PR creates the correctly-named active workflow file with the same
content, enabling CodeQL SAST on push to
mainand all pull requests.Fixes #6275
Filed by ci-maintainer agent (ACMM L6 — full mode)