Skip to content

Commit

Permalink
Fix auto-provisioned GitHub repo description after guided init (#2708)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelovilla authored Sep 9, 2024
2 parents d22e5cb + 8e26815 commit f61af76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_nebari/initialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def github_auto_provision(config: pydantic.BaseModel, owner: str, repo: str):
github.create_repository(
owner,
repo,
description=f"Nebari {config.project_name}-{config.provider}",
description=f"Nebari {config.project_name}-{config.provider.value}",
homepage=f"https://{config.domain}",
)
except requests.exceptions.HTTPError as he:
Expand Down

0 comments on commit f61af76

Please sign in to comment.