Skip to content

Commit 9200eb2

Browse files
authored
Allow Dependabot to run PR Builder (#217)
[Dependabot PR builds fail](#206) because Dependabot is not whitelisted.
1 parent 99bc35a commit 9200eb2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/pr-builder.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,14 @@ jobs:
2727

2828
steps:
2929
- name: Detect untrusted community PR
30-
if: ${{ needs.check_for_membership.outputs.check-result == 'false' }}
30+
if: >-
31+
${{ needs.check_for_membership.outputs.check-result == 'false' &&
32+
(
33+
github.actor != 'dependabot[bot]' &&
34+
github.actor != 'renovate[bot]' &&
35+
github.actor != 'mend[bot]'
36+
)
37+
}}
3138
run: |
3239
echo "::error::ERROR: Untrusted external PR. Must be reviewed and executed by Hazelcast" 1>&2;
3340
exit 1

0 commit comments

Comments
 (0)