From 7a31a7cedb434898a01693a0ca7a71895f628d42 Mon Sep 17 00:00:00 2001 From: Julian Brost Date: Wed, 22 Apr 2026 17:40:34 +0200 Subject: [PATCH] Don't sync README to Docker Hub anymore Starting with Icinga 2.16, the container builds are done from within that repo. This also applies to the documentation that is now synced to Docker Hub from there. Thus, this repo should no longer attempt to update the image description on Docker Hub. References: - https://github.com/Icinga/icinga2/blob/master/.github/workflows/container-image.yml - https://github.com/Icinga/icinga2/blob/master/.github/workflows/container-image.yml - https://github.com/Icinga/github-actions/blob/30473c897556dbdd4403826cb9885e92c87e5322/.github/workflows/container-image.yml#L192-L228 --- .github/workflows/sync-readme.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/sync-readme.yml diff --git a/.github/workflows/sync-readme.yml b/.github/workflows/sync-readme.yml deleted file mode 100644 index 297ca6b..0000000 --- a/.github/workflows/sync-readme.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Sync README.md to Docker Hub - -on: - push: - branches: - - master - -jobs: - sync: - name: Sync README - runs-on: ubuntu-latest - - steps: - - name: Checkout HEAD - uses: actions/checkout@v1 - - - name: Sync README - uses: ms-jpq/sync-dockerhub-readme@e2991ea1ba48832e73555cdbd5b82f5a2e91ee9b # v1 - with: - username: icingaadmin - password: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}' - repository: icinga/icinga2 - readme: ./README.md