ensure kodiak is re-added to apps list after code-freeze action (#56907)

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)
This commit is contained in:
Zack Tanner 2023-10-16 15:00:02 -07:00 committed by GitHub
parent 1ff7f07875
commit e7fc6f3708
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) || [],
},
}
}