Skip to content

Commit ab89941

Browse files
authored
fix: describe access changes (#185)
1 parent 13e20e2 commit ab89941

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/src/actions/shared/describe-access-changes.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,11 @@ export async function describeAccessChanges(
181181
string,
182182
{permission: string}
183183
>
184-
for (const [repository, config] of Object.entries(repositories)) {
184+
for (const [repository, {permission}] of Object.entries(
185+
repositories
186+
)) {
185187
lines.push(
186-
` - will gain ${config} permission to ${repository}`
188+
` - will gain ${permission} permission to ${repository}`
187189
)
188190
}
189191
}

0 commit comments

Comments
 (0)