Skip to content

Use base SHA instead of base branch since the base branch #16

Use base SHA instead of base branch since the base branch

Use base SHA instead of base branch since the base branch #16

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'
- run: yarn install
- uses: octokit/[email protected]
id: get_pr
with:
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.number }}
owner: octokit
repo: request-action
env:
GITHUB_TOKEN: ${{ github.token }}
- run: "echo latest sha: '${{ fromJson(steps.get_pr.outputs.data).base.sha }}'"
- run: |
set -euo pipefail
git fetch origin $GITHUB_BASE_REF
PR_NUMBER=${{ github.event.number }}
TARGETS_JSON=$(npx nx show projects --affected --base FETCH_HEAD --head ${{ github.sha }} --json)
echo $TARGETS_JSON
curl -X POST -H "Authorization: Bearer ${{ secrets.AVIATOR_API_TOKEN }}" \
-H "Content-Type: application/json" \
-d '{
"action": "update",
"pull_request": {
"number": '"$PR_NUMBER"',
"repository": {"name": "nx-examples", "org": "aviator-co"},
"affected_targets": '"$TARGETS_JSON"'
}
}' https://api.aviator.co/api/v1/pull_request/