We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93fb481 commit 32d44f9Copy full SHA for 32d44f9
.github/workflows/publish.yml
@@ -33,7 +33,7 @@ jobs:
33
#
34
Publish:
35
runs-on: ubuntu-latest
36
- if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/main'))
+ if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/main')
37
steps:
38
- uses: actions/checkout@v3
39
with:
binderhub/tests/test_repoproviders.py
@@ -367,7 +367,7 @@ def test_spec_with_no_suggestion(self):
367
368
def test_spec_with_suggestion(self):
369
spec = "short/suggestion"
370
- error = f'Did you mean "{spec}/master"?'
+ error = f'Did you mean "{spec}/main"?'
371
with self.assertRaisesRegex(ValueError, error):
372
user, repo, unresolved_ref = tokenize_spec(spec)
373
0 commit comments