Skip to content

Commit

Permalink
fix(ci): restrict issue comments to members or owners (#28633)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar authored May 22, 2024
1 parent ac53f7f commit 1573c10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-monorepo-lockfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
if: >
(github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]') ||
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@supersetbot trigger-dependabot-lockfile') && github.event.issue.pull_request)
(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'))
defaults:
run:
working-directory: superset-frontend
Expand Down

0 comments on commit 1573c10

Please sign in to comment.