diff --git a/.github/workflows/contributor_check.yml b/.github/workflows/contributor_check.yml deleted file mode 100644 index f0b8bd22ee5..00000000000 --- a/.github/workflows/contributor_check.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Contributor Membership Check - -on: - pull_request: - types: [opened, synchronize] - merge_group: -permissions: read-all - -jobs: - check_membership: - name: Contributor Membership Check - runs-on: spacetimedb-runner - steps: - - name: Verify author is contributor - env: - GITHUB_TOKEN: ${{ secrets.ORG_READ_TOKEN }} - CONTRIB_ORG: clockworklabs - PR_AUTHOR: ${{ github.event.pull_request.user.login || (github.event_name == 'merge_group' && github.event.sender.login) || null }} - run: | - if [[ $(gh api --paginate /orgs/$CONTRIB_ORG/members --jq 'any(.login == env.PR_AUTHOR)') != true ]]; then - echo "::error::$PR_AUTHOR is not a member of the organization" - exit 1 - fi -