Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI repository names #52

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
permissions:
id-token: write
if: |
github.repository == 'MDAnalysis/hole2-mdakit' &&
github.repository == 'MDAnalysis/mdahole2' &&
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/'))
name: Build, upload and test pure Python wheels to TestPyPi
runs-on: ubuntu-latest
Expand All @@ -38,7 +38,7 @@ jobs:
permissions:
id-token: write
if: |
github.repository == 'MDAnalysis/hole2-mdakit' &&
github.repository == 'MDAnalysis/mdahole2' &&
(github.event_name == 'release' && github.event.action == 'published')
name: Build, upload and test pure Python wheels to PyPi
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defaults:

jobs:
docs:
if: "github.repository == 'MDAnalysis/hole2-mdakit'"
if: "github.repository == 'MDAnalysis/mdahole2'"
runs-on: ubuntu-latest

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
last-n-minor-release: 1

main-tests:
if: "github.repository == 'MDAnalysis/hole2-mdakit'"
if: "github.repository == 'MDAnalysis/mdahole2'"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:


pylint_check:
if: "github.repository == 'MDAnalysis/hole2-mdakit'"
if: "github.repository == 'MDAnalysis/mdahole2'"
needs: environment-config
runs-on: ubuntu-latest

Expand All @@ -139,7 +139,7 @@ jobs:


pypi_check:
if: "github.repository == 'MDAnalysis/hole2-mdakit'"
if: "github.repository == 'MDAnalysis/mdahole2'"
needs: environment-config
runs-on: ubuntu-latest

Expand Down
Loading