Browse Source

Replace `hub` with `gh` for member roles on JIRA sync checks (#19089)

Update jira-pr.yaml

Change from `hub` to `gh` for checking member roles
pull/19100/head
David Yu 1 year ago committed by GitHub
parent
commit
677e16a830
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/jira-pr.yaml

2
.github/workflows/jira-pr.yaml

@ -40,7 +40,7 @@ jobs:
id: is-team-member
run: |
TEAM=consul
ROLE="$(hub api orgs/hashicorp/teams/${TEAM}/memberships/${{ github.actor }} | jq -r '.role | select(.!=null)')"
ROLE="$(gh api orgs/hashicorp/teams/${TEAM}/memberships/${{ github.actor }} | jq -r '.role | select(.!=null)')"
if [[ -n ${ROLE} ]]; then
echo "Actor ${{ github.actor }} is a ${TEAM} team member"
echo "MESSAGE=true" >> $GITHUB_OUTPUT

Loading…
Cancel
Save