Skip to content

Commit 8272f83

Browse files
authored
Merge pull request #17132 from MinaProtocol/dw/removing-stakholdrs-master
Creds: removing stakeholdrs master
2 parents f3f5487 + e23c32d commit 8272f83

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

frontend/ci-build-me/src/index.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const handler = async (event, req) => {
7474
// and the comment contents is exactly the slug we are looking for
7575
req.body.comment.body == "!approved-for-mainnet"
7676
) {
77-
// TODO #7711: Actually look at @MinaProtocol/stakeholder-reviewers team instead of hardcoding the users here
77+
// TODO: Actually look at @MinaProtocol/stakeholder-reviewers team instead of hardcoding the users here
7878
if (
7979
req.body.sender.login == "bkase" ||
8080
req.body.sender.login == "dannywillems" ||
@@ -148,10 +148,7 @@ const handler = async (event, req) => {
148148
const orgData = await getRequest(req.body.sender.organizations_url);
149149
// and the comment author is part of the core team
150150
if (
151-
orgData.data.filter((org) => org.login == "MinaProtocol").length > 0 ||
152-
req.body.sender.login == "ylecornec" ||
153-
req.body.sender.login == "balsoft" ||
154-
req.body.sender.login == "bryanhonof"
151+
orgData.data.filter((org) => org.login == "MinaProtocol").length > 0
155152
) {
156153
const prData = await getRequest(req.body.issue.pull_request.url);
157154
const buildkite = await runBuild(

0 commit comments

Comments
 (0)