We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f61b5d + 2d72511 commit c82789bCopy full SHA for c82789b
.github/workflows/build.yml
@@ -13,7 +13,7 @@ jobs:
13
fetch-depth: 0
14
15
- name: Fetch target
16
- run: git fetch origin ${{ github.event.pull_request.base.ref }}
+ run: git fetch origin ${{ env.PR_BASE_REF }}
17
18
- name: Enable Corepack
19
run: corepack enable
@@ -29,4 +29,7 @@ jobs:
29
- name: Build all packages
30
run: yarn nx run-many -t build
31
32
- - run: yarn nx affected:lint --base=origin/${{ github.event.pull_request.base.ref }} --parallel --max-parallel=3
+ - run: yarn nx affected:lint --base=origin/${{ env.PR_BASE_REF }} --parallel --max-parallel=3
33
+
34
+ env:
35
+ PR_BASE_REF: ${{ github.event.pull_request.base.ref }}
0 commit comments