Skip to content

Bump postcss to ^8.4.38 #36

Bump postcss to ^8.4.38

Bump postcss to ^8.4.38 #36

name: Add reviewers to release PRs
on:
pull_request_target:
branches: ['master', 'next']
types: ['labeled']
permissions: {}
jobs:
add-reviewers:
# Tests that label is added on the PR
if: ${{ github.event.label.name == 'release' }}
runs-on: ubuntu-latest
env:
ORG: ${{ github.event.organization }}
# we can use the team slug when making this a reusable workflow
TEAM_SLUG: x
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: read
pull-requests: write
steps:
- id: get-members
run: |

Check failure on line 25 in .github/workflows/add-release-reviewers.yml

View workflow run for this annotation

GitHub Actions / Add reviewers to release PRs

Invalid workflow file

The workflow is not valid. .github/workflows/add-release-reviewers.yml (Line: 25, Col: 14): Unexpected symbol: '$DATA'. Located at position 15 within expression: join(fromJson($DATA).*.login)
DATA=$(gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/orgs/$ORG/teams/$TEAM_SLUG/members?role=maintainer&per_page=100 \
| jq 'reduce inputs as $i (.; . += $i)') \
echo "data=$DATA" >> $GITHUB_OUTPUT
echo "members=${{ join(fromJson($DATA).*.login) }}" >> $GITHUB_OUTPUT
# assign reviewers
- id: assign-reviewers
run: |
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $GITHUB_TOKEN" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/$ORG/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/requested_reviewers \
-d '{"reviewers":[${{ steps.get-members.outputs.members }}]}' \