diff options
-rw-r--r-- | .github/workflows/gh-pages-examples.yml | 1 | ||||
-rw-r--r-- | .github/workflows/gh-pages.yml | 1 | ||||
-rw-r--r-- | .github/workflows/s3-snapshots.yml | 3 |
3 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/gh-pages-examples.yml b/.github/workflows/gh-pages-examples.yml index 9e87bb18..e0fbb8be 100644 --- a/.github/workflows/gh-pages-examples.yml +++ b/.github/workflows/gh-pages-examples.yml @@ -7,6 +7,7 @@ on: jobs: build-examples: runs-on: ubuntu-latest + if: github.repository == 'Kotlin/dokka' strategy: matrix: projects: [ diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index b4223d48..a221dcfa 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -7,6 +7,7 @@ on: jobs: docs: + if: github.repository == 'Kotlin/dokka' runs-on: ubuntu-latest steps: - name: Checkout dokka diff --git a/.github/workflows/s3-snapshots.yml b/.github/workflows/s3-snapshots.yml index ed64de7a..be7c3e8c 100644 --- a/.github/workflows/s3-snapshots.yml +++ b/.github/workflows/s3-snapshots.yml @@ -9,6 +9,7 @@ env: jobs: stdlib: runs-on: ubuntu-latest + if: github.repository == 'Kotlin/dokka' steps: - name: Checkout dokka uses: actions/checkout@v2 @@ -40,6 +41,7 @@ jobs: serialization: runs-on: ubuntu-latest + if: github.repository == 'Kotlin/dokka' steps: - name: Checkout dokka uses: actions/checkout@v2 @@ -71,6 +73,7 @@ jobs: biojava: runs-on: ubuntu-latest + if: github.repository == 'Kotlin/dokka' steps: - name: Checkout dokka uses: actions/checkout@v2 |