fix(bug-assess): set min-integrity: none to allow reading external user issues#3030
Merged
Conversation
…external user issues
Copilot
AI
changed the title
[WIP] Update assessment process for bug from labeled issue
fix(bug-assess): set min-integrity: none to allow reading external user issues
Jun 17, 2026
mnriem
approved these changes
Jun 17, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the bug-assess agentic workflow configuration to allow reading issue content from external (non-collaborator) users by lowering the GitHub MCP integrity threshold.
Changes:
- Set
tools.github.min-integrity: nonein.github/workflows/bug-assess.md. - Recompiled the generated lock workflow
.github/workflows/bug-assess.lock.ymlto reflect the new MCP guard policy behavior and newer gh-aw compiler/runtime. - Adjusted Dependabot ignore entries and minor repo metadata/config files related to generated workflow handling.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/bug-assess.md |
Lowers GitHub MCP minimum integrity to allow reading unapproved external issue content. |
.github/workflows/bug-assess.lock.yml |
Regenerated compiled workflow reflecting new guard policy settings and updated gh-aw versions. |
.github/dependabot.yml |
Expands ignore patterns for gh-aw actions dependencies. |
.github/aw/actions-lock.json |
Removes a previously-locked gh-aw setup action entry. |
.gitattributes |
Adjusts attributes for generated *.lock.yml workflows. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 5/5 changed files
- Comments generated: 3
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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 free
to 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.
The
bug-assessworkflow was failing with an integrity policy error when triggered on issues from external (non-collaborator) users. The automatic lockdown mechanism setsmin-integrity: approvedby default, but external user content is classified asunapproved, causing the GitHub MCP server to filter the issue body entirely — making bug assessment impossible for the exact issues this workflow exists to handle.Changes
bug-assess.md: Addedmin-integrity: noneundertools.githubto explicitly allow the agent to read issue content from any userbug-assess.lock.yml: Recompiled — guard policy now emits"min-integrity": "none"statically instead of reading$GITHUB_MCP_GUARD_MIN_INTEGRITYat runtimeThe setting is appropriate here: the workflow is purpose-built to read untrusted issue content, already carries explicit prompt-injection guardrails, and its only write outputs are one comment and up to two labels.