We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8c833f commit 30f8674Copy full SHA for 30f8674
.github/workflows/pkg.pr.new.yml
@@ -18,6 +18,7 @@ on:
18
19
jobs:
20
build:
21
+ if: github.repository == 'vuejs/router'
22
runs-on: ubuntu-latest
23
24
steps:
.github/workflows/test.yml
@@ -28,7 +28,7 @@ jobs:
28
- name: 'BrowserStack Env Setup'
29
uses: 'browserstack/github-actions/setup-env@master'
30
# forks do not have access to secrets so just skip this
31
- if: ${{ !github.event.pull_request.head.repo.fork }}
+ if: ${{ github.repository == 'vuejs/router' && !github.event.pull_request.head.repo.fork }}
32
with:
33
username: ${{ secrets.BROWSERSTACK_USERNAME }}
34
access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
0 commit comments