diff options
author | 2022-07-15 21:41:12 +0200 | |
---|---|---|
committer | 2022-07-15 12:41:12 -0700 | |
commit | 65027bff99a2e8cf1d9b275a4596914cb206d984 (patch) | |
tree | 6cb3cc1b03f17899a2d36b5f0aa732ad14e4fddb | |
parent | f35e13d57ef66a0f010bfd1e6611195a46d95368 (diff) | |
download | bun-65027bff99a2e8cf1d9b275a4596914cb206d984.tar.gz bun-65027bff99a2e8cf1d9b275a4596914cb206d984.tar.zst bun-65027bff99a2e8cf1d9b275a4596914cb206d984.zip |
chore(workflows): dont run on forks (#734)
* build:(landing) automated website build
* Revert "build:(landing) automated website build"
This reverts commit ddee8485fd8b76160962c410b885e17aaff95b4e.
* workflows(bun-dockerhub): dont run on forks
* chore(bun-landing): update
dont run on forks
fix commit changes
* workflows(bun): dont run on forks
Co-authored-by: xHyroM <xHyroM@users.noreply.github.com>
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/bun-dockerhub.yml | 1 | ||||
-rw-r--r-- | .github/workflows/bun-landing.yml | 2 | ||||
-rw-r--r-- | .github/workflows/bun.yml | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/bun-dockerhub.yml b/.github/workflows/bun-dockerhub.yml index f968a1ab3..943281a86 100644 --- a/.github/workflows/bun-dockerhub.yml +++ b/.github/workflows/bun-dockerhub.yml @@ -16,6 +16,7 @@ on: jobs: docker: runs-on: ubuntu-latest + if: github.repository_owner == 'oven-sh' steps: - name: Checkout repo uses: actions/checkout@v3 diff --git a/.github/workflows/bun-landing.yml b/.github/workflows/bun-landing.yml index 33f7d08fc..86a5045fc 100644 --- a/.github/workflows/bun-landing.yml +++ b/.github/workflows/bun-landing.yml @@ -9,6 +9,7 @@ jobs: build: name: website build runs-on: ubuntu-latest + if: github.repository_owner == 'oven-sh' strategy: fail-fast: false matrix: @@ -42,3 +43,4 @@ jobs: uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: build:(landing) automated website build + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml index b7be54d5f..5f2c83e0b 100644 --- a/.github/workflows/bun.yml +++ b/.github/workflows/bun.yml @@ -25,6 +25,7 @@ jobs: e2e: runs-on: self-hosted name: "Integration tests" + if: github.repository_owner == 'oven-sh' steps: - name: Checkout uses: actions/checkout@v2 |