Use actual types for api responses, not ad-hoc json!()
objects
#6076
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |