Skip to content

Commit

Permalink
ensure kodiak is re-added to apps list after code-freeze action (#56907)
Browse files Browse the repository at this point in the history
ensures that after the code-freeze action, Kodiak is re-added to the restrictions list

[slack x-ref](https://vercel.slack.com/archives/C04DUD7EB1B/p1697491473466249)
  • Loading branch information
ztanner committed Oct 16, 2023
1 parent 1ff7f07 commit e7fc6f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/code-freeze.js
Expand Up @@ -69,7 +69,7 @@ async function getCurrentRules() {
restrictions: {
users: data.restrictions.users?.map((user) => user.login) || [],
teams: data.restrictions.teams?.map((team) => team.slug) || [],
apps: [],
apps: data.restrictions.apps?.map((app) => app.slug) || [],
},
}
}
Expand Down

0 comments on commit e7fc6f3

Please sign in to comment.