Skip to content

Commit

Permalink
Merge pull request #717 from zklaus/fix-gha-run-link
Browse files Browse the repository at this point in the history
Fix the github action run links
  • Loading branch information
beckermr authored Oct 2, 2024
2 parents 1f66cb5 + b7858c8 commit 5f54f34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion conda_forge_webservices/github_actions_integration/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
def get_gha_run_link():
"""Get the link to the GHA run."""
run_id = os.environ["GITHUB_RUN_ID"]
return f"https://github.com/conda-forge-webservices/actions/runs/{run_id}"
return (
f"https://github.com/conda-forge/conda-forge-webservices/actions/runs/{run_id}"
)


def dedent_with_escaped_continue(text):
Expand Down

0 comments on commit 5f54f34

Please sign in to comment.