docs: update eic/panda-compose references after transfer to PanDAWMS#25
Open
wenaus wants to merge 1 commit into
Open
docs: update eic/panda-compose references after transfer to PanDAWMS#25wenaus wants to merge 1 commit into
wenaus wants to merge 1 commit into
Conversation
The repository was transferred from eic/panda-compose to PanDAWMS/panda-compose. GitHub's automatic redirect covers existing clones and `uses:` references, but the user-facing documentation, the composite-action metadata, and the OCI artifact paths all named the old org explicitly. This sweep updates: README and getting-started clone URLs; ci-integration and setup-panda-action docs (`uses: …` and `repository: …` examples); `action.yml` author and check-out repository; oci-artifact docs (`ghcr.io/…` paths and examples). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates documentation and GitHub Action metadata to reflect the repository’s move from eic/panda-compose to PanDAWMS/panda-compose, ensuring user-facing clone URLs and uses: / repository: examples point at the new org.
Changes:
- Replace
eic/panda-composewithPanDAWMS/panda-composein README + docs clone URLs and GitHub Actions examples - Update composite action metadata (
action.yml) author and checkoutrepository:target - Update OCI artifact documentation to reference the new GHCR path
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Updates clone URL to the new GitHub org. |
| docs/setup-panda-action.md | Updates uses: examples and narrative references to the new org. |
| docs/README.md | Updates quick-start clone URL to the new org. |
| docs/oci-artifact.md | Updates GHCR/OCI artifact references to the new org (see review comments re: casing). |
| docs/getting-started.md | Updates clone URL to the new org. |
| docs/ci-integration.md | Updates uses: and actions/checkout repository: examples to the new org. |
| action.yml | Updates action author and checkout repository to the new org. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
3
to
5
| panda-compose publishes its `docker-compose.yml` as an OCI artifact to the | ||
| [GitHub Container Registry](https://ghcr.io/eic/panda-compose) on every push to `main` | ||
| [GitHub Container Registry](https://ghcr.io/PanDAWMS/panda-compose) on every push to `main` | ||
| and on every version tag. It can also be triggered manually via `workflow_dispatch`. |
Comment on lines
21
to
23
| ```bash | ||
| docker compose -f oci://ghcr.io/eic/panda-compose:latest config | ||
| docker compose -f oci://ghcr.io/PanDAWMS/panda-compose:latest config | ||
| ``` |
Comment on lines
27
to
31
| ```yaml | ||
| # docker-compose.yml in an external project | ||
| include: | ||
| - oci://ghcr.io/eic/panda-compose:latest | ||
| - oci://ghcr.io/PanDAWMS/panda-compose:latest | ||
|
|
Comment on lines
51
to
55
| ```yaml | ||
| include: | ||
| - oci://ghcr.io/eic/panda-compose:v1 # semver tag | ||
| - oci://ghcr.io/eic/panda-compose:latest # always latest main | ||
| - oci://ghcr.io/PanDAWMS/panda-compose:v1 # semver tag | ||
| - oci://ghcr.io/PanDAWMS/panda-compose:latest # always latest main | ||
| ``` |
Comment on lines
82
to
86
| ```bash | ||
| # install docker compose v2.34.0+ if needed | ||
| cp .env.example .env | ||
| docker compose publish --yes ghcr.io/eic/panda-compose:my-tag | ||
| docker compose publish --yes ghcr.io/PanDAWMS/panda-compose:my-tag | ||
| ``` |
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.
Per Wouter's follow-up after the org transfer: GitHub's redirect covers existing clones and
uses:references, but documentation and action metadata still named the old org explicitly. This sweep updates the user-facing references:uses:andrepository:examples)action.ymlauthor field and the embedded check-out repository7 files, 27 +/-, no code changes. Holding for review before merge.