Skip to content

Commit

Permalink
Fix sync-mirror.yml workflow
Browse files Browse the repository at this point in the history
Currently this workflow is being skipped because the name of the repository that we're checking for is subtly wrong (there's an extra `.git` on the end of it). Fix this.
  • Loading branch information
alexdewar authored and djmaxus committed Nov 28, 2024
1 parent 10d7881 commit 34cdc04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sync-mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
mirror_repo:
if: github.repository == 'djmaxus/matlab-repo-init.git'
if: github.repository == 'djmaxus/matlab-repo-init'
runs-on: ubuntu-latest
steps:
- uses: webfactory/ssh-agent@v0.9.0
Expand Down

0 comments on commit 34cdc04

Please sign in to comment.