fix(#626): resolve [View job] links pointing to previous workflow runs after comment updates#627
Merged
ashwin-ant merged 1 commit intoanthropics:mainfrom Oct 21, 2025
Conversation
Specifies the exact format for job run links using the actual variable names:
${GITHUB_SERVER_URL}/${context.repository}/actions/runs/${process.env.GITHUB_RUN_ID}
This ensures Claude generates consistent and correct GitHub Actions workflow links.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
Contributor
Author
|
Hi @ashwin-ant 🙇♂️ I just wanted to leave a quick note to kindly ask for a review on this PR. Main change: Updated the GitHub Action so that the “View job” link points to the workflow run that’s currently in progress. |
cheapsteak
pushed a commit
to cheapsteak/claude-code-action
that referenced
this pull request
Dec 9, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes issue #626 where
[View job]links in comment updates were pointing to previous workflow runs instead of the current one.AS-IS (Problem)
[View job]links continue to point to previous workflow runs after comment updates[View job run]links update correctly, but[View job]links do notTO-BE (Solution)
UX Improvement
By ensuring the job link always points to the current workflow run, users no longer need to navigate to the Actions tab to search for the correct workflow. This reduces friction and improves the user experience when monitoring Claude's task execution.
Closes #626