From b6eba5dc421424ed621f741c566320decc8e7b28 Mon Sep 17 00:00:00 2001 From: bdvllrs Date: Wed, 9 Oct 2024 13:15:01 +0200 Subject: [PATCH] chore: fix workflow condition repository (#171) Condition was using `github.repository == 'shimmer'` instead of `'ruflab/shimmer'`. --- .github/workflows/docs-new-release.yml | 2 +- .github/workflows/docs.yml | 4 ++-- .github/workflows/tests.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs-new-release.yml b/.github/workflows/docs-new-release.yml index f30fc6b7..dcb1fc0b 100644 --- a/.github/workflows/docs-new-release.yml +++ b/.github/workflows/docs-new-release.yml @@ -12,7 +12,7 @@ permissions: jobs: build: runs-on: ubuntu-latest - if: github.repository == 'shimmer' + if: github.repository == 'ruflab/shimmer' steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 6d00e8a4..f2e5c915 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,7 +11,7 @@ permissions: jobs: build: runs-on: ubuntu-latest - if: github.repository == 'shimmer' + if: github.repository == 'ruflab/shimmer' steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -55,7 +55,7 @@ jobs: deploy: needs: build runs-on: ubuntu-latest - if: github.repository == 'shimmer' + if: github.repository == 'ruflab/shimmer' permissions: pages: write id-token: write diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5ba08a89..4bc01141 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest - if: github.repository == 'shimmer' || (github.event.ref != 'refs/heads/public-clone' && github.event.ref != 'refs/heads/main') + if: github.repository == 'ruflab/shimmer' || (github.event.ref != 'refs/heads/public-clone' && github.event.ref != 'refs/heads/main') steps: - uses: actions/checkout@v3