We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 909db6f commit 4962f91Copy full SHA for 4962f91
1 file changed
.github/workflows/test.yml
@@ -73,14 +73,14 @@ jobs:
73
run: npm ci
74
75
- name: Clone early access
76
- if: ${{ github.repository == 'github/docs-internal' }}
+ if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' && github.repository == 'github/docs-internal' }}
77
run: npm run heroku-postbuild
78
env:
79
DOCUBOT_REPO_PAT: ${{ secrets.DOCUBOT_REPO_PAT }}
80
GIT_BRANCH: ${{ github.ref }}
81
82
- name: Run build script
83
- if: ${{ github.repository != 'github/docs-internal' and needs.see_if_should_skip.outputs.should_skip != 'true'}}
+ if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' && github.repository != 'github/docs-internal' }}
84
run: npm run build
85
86
- if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }}
0 commit comments