Skip to content

Commit 7039b10

Browse files
authored
Allow Dependabot to trigger PR Builder (#729)
[Dependabot PRs are blocked](#728) from PR builder execution, should be whitelisted.
1 parent 872095c commit 7039b10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/builder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
needs: check_for_membership
2323
steps:
2424
- name: Detect untrusted community PR
25-
if: ${{ needs.check_for_membership.outputs.check-result == 'false' }}
25+
if: ${{ needs.check_for_membership.outputs.check-result == 'false' && github.actor != 'dependabot[bot]' }}
2626
run: |
2727
echo "::error::ERROR: Untrusted external PR. Must be reviewed and executed by Hazelcast" 1>&2;
2828
exit 1

0 commit comments

Comments
 (0)