Skip to content

Commit 1573c10

Browse files
authored
fix(ci): restrict issue comments to members or owners (apache#28633)
1 parent ac53f7f commit 1573c10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-monorepo-lockfiles.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
if: >
2424
(github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]') ||
25-
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@supersetbot trigger-dependabot-lockfile') && github.event.issue.pull_request)
25+
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@supersetbot trigger-dependabot-lockfile') && github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER'))
2626
defaults:
2727
run:
2828
working-directory: superset-frontend

0 commit comments

Comments
 (0)