Uh oh!
There was an error while loading. Please reload this page.
Suppress benign workflow exfiltration findings - #52083
Merged
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
CopilotAI
changed the title
[WIP] Update static analysis report for 2026-08-11Suppress benign workflow exfiltration findingsAug 11, 2026
pelikhan
marked this pull request as ready for review
August 11, 2026 15:25
Copilot stopped reviewing on behalf of pelikhan due to an error
August 11, 2026 15:25
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot could not run the full agentic suite for this review because it was automatically requested on a bot-authored pull request. Request a review from Copilot under Reviewers to retry with the full agentic suite. Improved support for bot-authored pull requests is coming soon.
Updates GitHub Actions workflows to satisfy runner-guard checks and make the vulnhunter scan’s repo traversal more robust.
Changes:
- Add
runner-guard:ignore RGS-012annotations for local/read-only HTTP probes and known-safe API calls. - Adjust
daily-vulnhunter-scanto avoid continuing whencd "$REPO_ROOT"fails. - Regenerate corresponding
*.lock.ymlworkflows to reflect source workflow updates / version bumps.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/docs-noob-tester.md | Adds runner-guard ignore annotations for localhost readiness checks. |
| .github/workflows/docs-noob-tester.lock.yml | Regenerates locked workflow to include the same annotations. |
| .github/workflows/daily-vulnhunter-scan.md | Changes add_hits() to handle cd $REPO_ROOT failure differently. |
| .github/workflows/daily-vulnhunter-scan.lock.yml | Regenerates locked workflow with the updated add_hits() implementation. |
| .github/workflows/daily-pr-review-cursor.lock.yml | Bumps locked workflow metadata/version values. |
| .github/workflows/daily-model-inventory.md | Adds runner-guard ignore annotations for external model inventory fetches. |
| .github/workflows/daily-model-inventory.lock.yml | Regenerates locked workflow to include the same annotations. |
| .github/workflows/daily-byok-ollama-test.md | Adds runner-guard ignore annotations for localhost Ollama probes/requests. |
| .github/workflows/daily-byok-ollama-test.lock.yml | Regenerates locked workflow to include the same annotations. |
Review details
Tip
Add a code-review agent skill for context-aware, tailored reviews. Learn more in the docs.
- Files reviewed: 9/9 changed files
- Comments generated: 1
- Review effort level: Lite
| : > "$HITS" | ||
| add_hits() { | ||
| (cd "$REPO_ROOT" && grep -rlE "$2" . 2>/dev/null || true) \ | ||
| (cd "$REPO_ROOT" || return; grep -rlE "$2" . 2>/dev/null || true) \ |
CopilotAI
added a commit
that referenced
this pull request
Aug 11, 2026
PR #52083 landed the RGS-012 suppressions on main using the repo's established convention: the directive is placed inside the run script directly above the offending curl, where the compiler emits it verbatim. That makes the step-level comment preservation added here unnecessary, so the compiler post-processing, its tests, the ADR and the duplicate step-level suppressions are removed in favour of main's version. Co-authored-by: gh-aw-bot <259018956+gh-aw-bot@users.noreply.github.com>
This was referenced Aug 11, 2026
Contributor
🎉 This pull request is included in a new release. Release: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Static analysis flagged intended provider API requests and loopback health checks as potential secret exfiltration. It also identified an ambiguous ShellCheck conditional in the VulnHunter workflow.
Runner Guard
models.devrequest.ShellCheck
Generated workflows