chore: weekly message center posts refresh 2026-06-22 - #44
Conversation
Disable automatic publish during solution import so Copilot Studio validates the agent after bot variables and connection references are registered. Update the packaged solution to 1.2.11.0 and align setup guidance with the manual publish step. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
There was a problem hiding this comment.
Code Review
This pull request updates the message center data in index.html by adding a new post, updating the status of several existing posts to 'completed', and removing older entries. The review feedback correctly identifies a mismatch in the agent audience key ('researcherAnalyst' instead of 'firstParty') in the newly added post, which would prevent it from being displayed under the First-Party Agents tab, and provides a code suggestion to fix it.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
|
|
||
| // ─── Message Center Data ───────────────────────────────────────── | ||
| const messageCenterPosts = [ | ||
| { id: 'MC1396361', title: 'Microsoft 365 Copilot: Publish organization prompts to Copilot Chat', category: 'Stay Informed', severity: 'medium', datePublished: '2026-06-18', actionRequiredBy: null, status: 'active', services: ['Microsoft 365 Copilot Chat'], summary: 'Microsoft 365 Copilot now lets admins create and publish organization-specific prompts in Copilot Chat, guiding users with curated, relevant starting points. This feature, rolling out July 2026, enhances productivity, reflects organizational priorities, includes usage analytics, requires no license changes, and is enabled by default.', tags: ['new-feature', 'user-impact', 'admin-impact'], isHighImpact: false, agentAudience: ['researcherAnalyst', 'full', 'declarative', 'toolkit'] }, |
There was a problem hiding this comment.
Mismatch in Agent Audience Key
There is a mismatch between the audience key used in the message center data ('researcherAnalyst') and the key used in the React component's state/configuration ('firstParty').
In index.html:
- The state defaults to
'firstParty'(line 198). - The
agentTypesconfiguration defines the key asfirstParty(line 239). - The filtering logic (line 759) checks
post.agentAudience.includes(selectedAgentKeyForContent).
Because of this, any post with 'researcherAnalyst' in its agentAudience will never be displayed under the First-Party Agents tab.
To resolve this permanently, please update the generator script scripts/update-message-center.js to map/output 'firstParty' instead of 'researcherAnalyst'. For this PR, you can manually update this entry as shown in the suggestion.
| { id: 'MC1396361', title: 'Microsoft 365 Copilot: Publish organization prompts to Copilot Chat', category: 'Stay Informed', severity: 'medium', datePublished: '2026-06-18', actionRequiredBy: null, status: 'active', services: ['Microsoft 365 Copilot Chat'], summary: 'Microsoft 365 Copilot now lets admins create and publish organization-specific prompts in Copilot Chat, guiding users with curated, relevant starting points. This feature, rolling out July 2026, enhances productivity, reflects organizational priorities, includes usage analytics, requires no license changes, and is enabled by default.', tags: ['new-feature', 'user-impact', 'admin-impact'], isHighImpact: false, agentAudience: ['researcherAnalyst', 'full', 'declarative', 'toolkit'] }, | |
| { id: 'MC1396361', title: 'Microsoft 365 Copilot: Publish organization prompts to Copilot Chat', category: 'Stay Informed', severity: 'medium', datePublished: '2026-06-18', actionRequiredBy: null, status: 'active', services: ['Microsoft 365 Copilot Chat'], summary: 'Microsoft 365 Copilot now lets admins create and publish organization-specific prompts in Copilot Chat, guiding users with curated, relevant starting points. This feature, rolling out July 2026, enhances productivity, reflects organizational priorities, includes usage analytics, requires no license changes, and is enabled by default.', tags: ['new-feature', 'user-impact', 'admin-impact'], isHighImpact: false, agentAudience: ['firstParty', 'full', 'declarative', 'toolkit'] }, |
Automated weekly message center data update.