Update repo URLs from zuchka/ to ding-labs/#2
Merged
Conversation
The repo migrated to the ding-labs org server-side, but several files still reference github.com/zuchka/ paths. GitHub auto-redirects HTML URLs and most API requests, but relying on the redirect is fragile — especially for the api.github.com call in action.yml that powers "version: latest" resolution. Updated: - README.md: cross-links to the DING repo + uses: lines - action.yml: api.github.com/repos/ call and releases/download URLs for resolving and fetching the DING binary - examples/pytest-workflow.yml: uses: zuchka/ding-action@v1 - examples/ml-training-workflow.yml: same The "author: 'zuchka'" line in action.yml stays — that field is the GitHub Actions marketplace publisher attribution, naming the person. Note: any user currently invoking "uses: zuchka/ding-action@vN" will continue to work via GitHub's repo-rename redirect, but they should update to "uses: ding-labs/ding-action@vN" at their convenience. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
3 tasks
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
Cleanup PR identified during the relicense work in #1:
README.md,action.yml, and the example workflows still referencegithub.com/zuchka/paths from before the org migration. GitHub auto-redirects HTML URLs and most API requests, but theapi.github.com/repos/zuchka/ding/releases/latestcall inaction.ymlis functional — it resolvesversion: latestfor the DING binary install. Pointing it at the canonicalding-labsURL avoids any future risk if redirects are tightened.Changed files
README.mduses: zuchka/ding-action@v1snippetsaction.ymlapi.github.com/repos/ding-labs/ding/releases/latest+releases/download/...URLsexamples/pytest-workflow.ymluses: zuchka/ding-action@v1→ding-labsexamples/ml-training-workflow.ymlThe
author: 'zuchka'line inaction.ymlstays — that field names the GitHub Actions marketplace publisher (a person), not the org.Backwards compatibility
Any user currently invoking
uses: zuchka/ding-action@vNin their workflows continues to work via GitHub's repo-rename redirect. They should update toding-labs/ding-action@vNat their convenience but nothing breaks immediately. Worth posting a brief note in release notes for the next tag.Relationship to #1
Independent of the relicense PR (#1), based off
main. Touches different lines inREADME.md(relicense touches L132, this PR touches L3, L10, L83, L136), so they should rebase cleanly regardless of merge order.Test plan
version: latestAPI call resolves correctly againstding-labs/ding.🤖 Generated with Claude Code