From b0a4910df6c5217ed060269110bf81ca13ec3602 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Fri, 15 May 2026 11:23:05 +0900 Subject: [PATCH] Sync Docker Hub overview from README.md Docker Hub's overview page must be updated manually today and tends to drift from README.md (e.g., the 4.0 tags added in #158 are still missing on the Hub page). Run peter-evans/dockerhub-description on master pushes that touch README.md to keep them in sync. Closes #168 Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/dockerhub-description.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/dockerhub-description.yml diff --git a/.github/workflows/dockerhub-description.yml b/.github/workflows/dockerhub-description.yml new file mode 100644 index 0000000..d3297fe --- /dev/null +++ b/.github/workflows/dockerhub-description.yml @@ -0,0 +1,21 @@ +name: Update Docker Hub description + +on: + push: + branches: + - master + paths: + - README.md + workflow_dispatch: + +jobs: + update: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + + - uses: peter-evans/dockerhub-description@1b9a80c056b620d92cedb9d9b5a223409c68ddfa # v5.0.0 + with: + username: ${{ secrets.DOCKER_USER }} + password: ${{ secrets.DOCKER_PASS }} + repository: rubylang/ruby