Merge pull request #1134 from nginx-proxy/dependabot/docker/library/a… #1
This file contains 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
name: Update Docker Hub Description | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- README.md | |
- .github/workflows/dockerhub-description.yml | |
jobs: | |
dockerHubDescription: | |
name: Update Docker Hub Description | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Docker Hub Description | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN_RWD }} | |
repository: nginxproxy/acme-companion | |
short-description: ${{ github.event.repository.description }} | |
enable-url-completion: true |