We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99bc35a commit 9200eb2Copy full SHA for 9200eb2
.github/workflows/pr-builder.yaml
@@ -27,7 +27,14 @@ jobs:
27
28
steps:
29
- name: Detect untrusted community PR
30
- if: ${{ needs.check_for_membership.outputs.check-result == 'false' }}
+ 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
+ }}
38
run: |
39
echo "::error::ERROR: Untrusted external PR. Must be reviewed and executed by Hazelcast" 1>&2;
40
exit 1
0 commit comments