Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@ jobs:
member-name: ${{ github.actor }}
token: ${{ secrets.GH_TOKEN }}

# ensure we are an Hazelcast organization member OR manually running
# ensure PR is trusted
ensure-membership:
name: Ensure Membership
runs-on: ubuntu-latest
needs: test-membership
strategy:
fail-fast: false

if: needs.test-membership.outputs.is-hazelcast == 'true' || github.event_name == 'workflow_dispatch'
if: ${{ needs.test-membership.outputs.is-hazelcast == 'true' || github.event_name == 'workflow_dispatch' || github.actor == 'dependabot[bot]' }}
steps:
- name: Report
shell: bash
run: echo "User ${{ github.actor }} is a member of the Hazelcast organization"
run: echo "User ${{ github.actor }} is trusted for PR execution"


# get
Expand Down
Loading