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.
hfla-workflow-rollout[bot]
1 parent 659cd9f commit c5d21ebCopy full SHA for c5d21eb
1 file changed
github-actions/trigger-pr-target/verify-pr.js
@@ -10,7 +10,7 @@ async function main({github,context}) {
10
const repo = context.payload.pull_request.base.repo.name;
11
const owner = context.payload.pull_request.base.repo.owner.login;
12
const isMember = await isMemberOfTeam(github, context, prAuthor, 'website-write');
13
- if (isMember || prAuthor =='dependabot[bot]') {
+ if (isMember || ['dependabot[bot]', 'hfla-workflow-rollout[bot]'].includes(prAuthor)) {
14
console.log('Successfully verified!');
15
}
16
else {
0 commit comments