Add Docker Hub README and description sync to workflow - #10
Merged
nickytonline merged 5 commits intoOct 3, 2025
Merged
Conversation
Co-authored-by: nickytonline <833231+nickytonline@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Chore: Update docker.yml workflow
Add Docker Hub README sync to workflow
Oct 3, 2025
nickytonline
marked this pull request as ready for review
October 3, 2025 02:46
nickytonline
approved these changes
Oct 3, 2025
There was a problem hiding this comment.
Pull Request Overview
Adds a CI step to automatically sync the repository README to Docker Hub after publishing images, keeping the Docker Hub description up-to-date.
- Adds peter-evans/dockerhub-description@v3 to the publish workflow
- Uses Docker Hub credentials from repository secrets and README.md as the source
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
nickytonline
enabled auto-merge (squash)
October 3, 2025 02:58
nickytonline
disabled auto-merge
October 3, 2025 03:01
Owner
|
@copilot also sync the description, |
nickytonline
enabled auto-merge (squash)
October 3, 2025 03:04
Co-authored-by: nickytonline <833231+nickytonline@users.noreply.github.com>
auto-merge was automatically disabled
October 3, 2025 03:05
Head branch was pushed to by a user without write access
Contributor
Author
Copilot
AI
changed the title
Add Docker Hub README sync to workflow
Add Docker Hub README and description sync to workflow
Oct 3, 2025
nickytonline
approved these changes
Oct 3, 2025
nickytonline
approved these changes
Oct 3, 2025
nickytonline
disabled auto-merge
October 3, 2025 03:16
nickytonline
enabled auto-merge (squash)
October 3, 2025 03:17
nickytonline
deleted the
copilot/fix-5be479f2-fd9c-443f-b3ec-9e018ed79667
branch
October 3, 2025 03:31
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.
Changes
This PR adds automated syncing of the README.md and repository description to Docker Hub, ensuring both the full description and short description stay up-to-date whenever Docker images are published.
Implementation
Added a new step to the
publishjob in.github/workflows/docker.ymlthat uses thepeter-evans/dockerhub-description@v3action. This step:DOCKERHUB_USERNAMEandDOCKERHUB_TOKENsecrets./README.mdfile to the Docker Hub repository's full description${{ secrets.DOCKERHUB_USERNAME }}/${{ env.IMAGE_NAME }}Benefits
Fixes the issue where Docker Hub descriptions could become outdated when README or repository description changes are made.
Fixes #9
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.