2023-12-19 20:27:13 +01:00
|
|
|
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
|
2024-01-29 04:35:11 +00:00
|
|
|
uses: peter-evans/dockerhub-description@v4
|
2023-12-19 20:27:13 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN_RWD }}
|
|
|
|
repository: nginxproxy/nginx-proxy
|
|
|
|
short-description: ${{ github.event.repository.description }}
|
|
|
|
enable-url-completion: true
|