Skip to content

Commit 4962f91

Browse files
committed
Fix test workflow file
1 parent 909db6f commit 4962f91

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ jobs:
7373
run: npm ci
7474

7575
- name: Clone early access
76-
if: ${{ github.repository == 'github/docs-internal' }}
76+
if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' && github.repository == 'github/docs-internal' }}
7777
run: npm run heroku-postbuild
7878
env:
7979
DOCUBOT_REPO_PAT: ${{ secrets.DOCUBOT_REPO_PAT }}
8080
GIT_BRANCH: ${{ github.ref }}
8181

8282
- name: Run build script
83-
if: ${{ github.repository != 'github/docs-internal' and needs.see_if_should_skip.outputs.should_skip != 'true'}}
83+
if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' && github.repository != 'github/docs-internal' }}
8484
run: npm run build
8585

8686
- if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }}

0 commit comments

Comments
 (0)