fix: standardize agentic report discussions to Audits category#43899
Merged
Conversation
- agent-performance-analyzer: add category: "audits" (was unset, defaulted to General) - daily-hippo-learn: change category from "announcements" to "audits" (analysis report) - daily-repo-chronicle: change category from "announcements" to "audits" (daily report) - Recompile affected lock files Closes #43816 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Standardize agentic report discussions into Audits category
fix: standardize agentic report discussions to Audits category
Jul 7, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Standardizes where agent-generated analysis/report discussions are created by routing them into the Audits GitHub Discussions category, improving category-based filtering and downstream aggregation (e.g., DeepReport).
Changes:
- Set
safe-outputs.create-discussion.category: "audits"for the agent performance analyzer workflow (previously unset). - Switch
daily-hippo-learnanddaily-repo-chroniclediscussion category fromannouncementstoaudits. - Recompiled the generated
.lock.ymlworkflow outputs for the three affected workflows to reflect the new category in embedded safe-output configs.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/agent-performance-analyzer.md | Adds category: "audits" to ensure created discussions land in Audits instead of defaulting. |
| .github/workflows/agent-performance-analyzer.lock.yml | Regenerated compiled workflow to embed create_discussion.category: "audits" in safe-output configs. |
| .github/workflows/daily-hippo-learn.md | Moves discussion category from announcements to audits for analysis output. |
| .github/workflows/daily-hippo-learn.lock.yml | Regenerated compiled workflow to embed create_discussion.category: "audits". |
| .github/workflows/daily-repo-chronicle.md | Moves discussion category from announcements to audits for daily reporting output. |
| .github/workflows/daily-repo-chronicle.lock.yml | Regenerated compiled workflow to embed create_discussion.category: "audits" and updated tool descriptions accordingly. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 6/6 changed files
- Comments generated: 0
- Review effort level: Low
This was referenced Jul 7, 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 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.
Report discussions from analysis/audit workflows were landing in General and Announcements, making category-based filtering unreliable for aggregating agents like DeepReport.
Changes
agent-performance-analyzer.md— Addedcategory: "audits"; was unset, so posts defaulted to the first available category (General)daily-hippo-learn.md— Changedcategory: "announcements"→"audits"; this workflow produces analysis output, not announcementsdaily-repo-chronicle.md— Changedcategory: "announcements"→"audits"; daily activity chronicle is a report, not an announcement.lock.ymlfilesSmoke test workflows (
smoke-copilot*.md) and POTD (constraint-solving-potd.md) retainannouncementsas their category is intentional.