mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Properly query team members
This commit is contained in:
parent
88b5ed1894
commit
c0c1ab766f
16
.github/workflows/welcome-external-pr.yml
vendored
16
.github/workflows/welcome-external-pr.yml
vendored
@ -23,15 +23,13 @@ jobs:
|
||||
gh api graphql \
|
||||
--raw-field organization="$ORGANIZATION" \
|
||||
--raw-field query='
|
||||
query($organization: String!, $cursor: String) {
|
||||
query($organization: String!) {
|
||||
organization(login: $organization) {
|
||||
membersWithRole(first: 100, after: $cursor) {
|
||||
pageInfo {
|
||||
hasNextPage,
|
||||
endCursor
|
||||
}
|
||||
nodes {
|
||||
login
|
||||
team(slug: "Solidity") {
|
||||
members(first: 100) {
|
||||
nodes {
|
||||
login
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -39,7 +37,7 @@ jobs:
|
||||
echo "CONTRIBUTOR_IS_ORG_MEMBER=$(
|
||||
jq \
|
||||
--arg contributor $CONTRIBUTOR \
|
||||
'.data.organization.membersWithRole | any(.nodes[].login; . == $contributor)' \
|
||||
'.data.organization.team.members | any(.nodes[].login; . == $contributor)' \
|
||||
org_members.json
|
||||
)" >> $GITHUB_OUTPUT
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user