1
0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2025-08-24 06:34:33 +02:00
nginx-proxy/.github/workflows/dockerhub-description.yml
2025-08-16 11:14:51 +02:00

31 lines
733 B
YAML

name: Update Docker Hub Description
permissions:
contents: read
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@v5
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN_RWD }}
repository: nginxproxy/nginx-proxy
short-description: ${{ github.event.repository.description }}
enable-url-completion: true