Skip to content

Commit

Permalink
chore: fix workflow condition repository (#171)
Browse files Browse the repository at this point in the history
Condition was using `github.repository == 'shimmer'` instead of
`'ruflab/shimmer'`.
  • Loading branch information
bdvllrs authored Oct 9, 2024
1 parent 2257e23 commit b6eba5d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b6eba5d

Please sign in to comment.