From 8ce4daf29449ff402ddbf06d23b74140fb37d68c Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Wed, 20 Jul 2022 15:55:31 +0200 Subject: [PATCH] GHA: sync README.md to Docker Hub --- .github/workflows/sync-readme.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/sync-readme.yml diff --git a/.github/workflows/sync-readme.yml b/.github/workflows/sync-readme.yml new file mode 100644 index 0000000..873be45 --- /dev/null +++ b/.github/workflows/sync-readme.yml @@ -0,0 +1,23 @@ +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/icingaweb2 + readme: ./README.md