forked from nrwl/nx-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (40 loc) · 1.38 KB
/
aviator-targets.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Fetch Aviator targets
on:
pull_request:
jobs:
fetch-aviator-targets:
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: |
set -euo pipefail
PR_NUMBER=${{ github.event.number }}
TARGETS_JSON=$(npx nx show projects --affected --base ${{ fromJson(steps.get_pr.outputs.data).base.sha }} --head ${{ github.sha }} --json)
echo $TARGETS_JSON
echo latest sha: '${{ fromJson(steps.get_pr.outputs.data).base.sha }}'
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/