chore: inline team check #12
This file contains hidden or 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: pr-preview | |
| on: | |
| pull_request_target: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| check-permissions: | |
| runs-on: ubuntu-latest | |
| if: >- | |
| github.event_name == 'pull_request_target' || | |
| (github.event_name == 'issue_comment' && | |
| github.event.issue.pull_request && | |
| contains(github.event.comment.body, '/deploy-preview')) | |
| outputs: | |
| allowed: ${{ steps.check-team.outputs.allowed }} | |
| pr-number: ${{ steps.pr-info.outputs.number }} | |
| steps: | |
| - name: Get PR info | |
| id: pr-info | |
| env: | |
| EVENT_NAME: ${{ github.event_name }} | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| PR_ACTOR: ${{ github.event.pull_request.user.login }} | |
| COMMENT_NUMBER: ${{ github.event.issue.number }} | |
| COMMENT_ACTOR: ${{ github.event.comment.user.login }} | |
| run: | | |
| if [[ "$EVENT_NAME" == "pull_request_target" ]]; then | |
| echo "number=$PR_NUMBER" >> $GITHUB_OUTPUT | |
| echo "actor=$PR_ACTOR" >> $GITHUB_OUTPUT | |
| else | |
| echo "number=$COMMENT_NUMBER" >> $GITHUB_OUTPUT | |
| echo "actor=$COMMENT_ACTOR" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Check team membership | |
| id: check-team | |
| env: | |
| GH_READ_ORG_TOKEN: ${{ secrets.GH_READ_ORG_TOKEN }} | |
| ACTOR: ${{ steps.pr-info.outputs.actor }} | |
| ORG: patternfly | |
| TEAM: frequent-flyers | |
| run: | | |
| RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" \ | |
| -H "Authorization: token $GH_READ_ORG_TOKEN" \ | |
| -H "Accept: application/vnd.github.v3+json" \ | |
| "https://api.github.com/orgs/$ORG/teams/$TEAM/members/$ACTOR") | |
| if [[ "$RESPONSE" == "204" ]]; then | |
| echo "allowed=true" >> $GITHUB_OUTPUT | |
| echo "$ACTOR is a member of $TEAM" | |
| else | |
| echo "allowed=false" >> $GITHUB_OUTPUT | |
| echo "$ACTOR is not a member of $TEAM" | |
| fi | |
| deploy-preview: | |
| runs-on: ubuntu-latest | |
| needs: check-permissions | |
| if: needs.check-permissions.outputs.allowed == 'true' | |
| env: | |
| SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} | |
| SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} | |
| GH_PR_TOKEN: ${{ secrets.GH_PR_TOKEN }} | |
| GH_PR_NUM: ${{ needs.check-permissions.outputs.pr-number }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| git fetch origin pull/$GH_PR_NUM/head:tmp | |
| git checkout tmp | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - run: corepack enable | |
| - uses: actions/cache@v4 | |
| id: yarn-cache | |
| name: Cache yarn deps | |
| with: | |
| path: | | |
| node_modules | |
| **/node_modules | |
| key: ${{ runner.os }}-yarn-22-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }} | |
| - run: yarn install --immutable | |
| if: steps.yarn-cache.outputs.cache-hit != 'true' | |
| - run: yarn build | |
| name: Build | |
| - run: yarn build:docs | |
| name: Build docs | |
| - name: Upload docs | |
| uses: patternfly/.github/.github/actions/surge-preview@main | |
| with: | |
| folder: packages/module/public |