Conversation
There was a problem hiding this comment.
Pull request overview
Weekly permissions sync updating the permissions provisioning metadata used by the repo’s permissions pipeline.
Changes:
- Added two new placeholder permission keys (
_A.DG,_A.DH) topermissions/new/provisioningInfo.json. - Each new key currently includes an
Application-scheme deployment entry (hidden/enabled, empty id/environment).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "_A.DG": [ | ||
| { | ||
| "id": "", | ||
| "environment": "", | ||
| "isHidden": true, |
There was a problem hiding this comment.
_A.DG is added as an underscore placeholder permission, but it only includes an Application variant. In this file, underscore placeholder permissions in the surrounding block (e.g., _A.DC–_A.DF) consistently include both Application and DelegatedWork variants; omitting DelegatedWork here can cause lookups/exports for delegated scenarios to miss this key. Add the corresponding DelegatedWork entry (matching the other placeholder entries) or confirm/encode explicitly that this placeholder is application-only in a way that is consistent with the rest of the placeholder set.
| "isHidden": true, | ||
| "isEnabled": true, | ||
| "resourceAppId": "00000002-0000-0000-c000-000000000000", | ||
| "scheme": "Application" |
There was a problem hiding this comment.
_A.DH is added with only an Application variant. Given neighboring underscore placeholder permissions include both Application and DelegatedWork variants, consider adding the missing DelegatedWork entry so delegated permission flows don’t treat this key as absent.
| "scheme": "Application" | |
| "scheme": "Application" | |
| }, | |
| { | |
| "id": "", | |
| "environment": "", | |
| "isHidden": true, | |
| "isEnabled": true, | |
| "resourceAppId": "00000002-0000-0000-c000-000000000000", | |
| "scheme": "DelegatedWork" |
Weekly Permissions sync 2026-04-03