Add GitHub action to upload target information to Aviator #8
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: Fetch Aviator targets | |
on: | |
pull_request: | |
jobs: | |
nextjs-build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: . | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
cache-dependency-path: ./yarn.lock | |
- run: yarn install --immutable | |
- run: | | |
set -euo pipefail | |
git fetch origin $GITHUB_BASE_REF | |
TARGETS_JSON=$(npx nx show projects --affected --base FETCH_HEAD --head $GITHUB_HEAD_REF --json) | |
echo $TARGETS_JSON | |
curl -X POST -H "Authorization: Bearer ${{ secrets.AVIATOR_API_KEY }}" \ | |
-H "Content-Type: application/json" \ | |
-d '{ | |
"action": "update", | |
"pull_request": { | |
"number": '"$PR_NUMBER"', | |
"repository": {"name": "aviator-co", "org": "nx-examples"}, | |
"affected_targets": '"$TARGETS_JSON"' | |
} | |
}' https://api.aviator.co/api/v1/pull_request/ |