We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13e20e2 commit ab89941Copy full SHA for ab89941
scripts/src/actions/shared/describe-access-changes.ts
@@ -181,9 +181,11 @@ export async function describeAccessChanges(
181
string,
182
{permission: string}
183
>
184
- for (const [repository, config] of Object.entries(repositories)) {
+ for (const [repository, {permission}] of Object.entries(
185
+ repositories
186
+ )) {
187
lines.push(
- ` - will gain ${config} permission to ${repository}`
188
+ ` - will gain ${permission} permission to ${repository}`
189
)
190
}
191
0 commit comments