We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1502957 commit fcd44d3Copy full SHA for fcd44d3
.github/workflows/dockerhub-description.yml
@@ -0,0 +1,27 @@
1
+name: Update Docker Hub Description
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - README.md
9
+ - .github/workflows/dockerhub-description.yml
10
11
+jobs:
12
+ dockerHubDescription:
13
+ name: Update Docker Hub Description
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout repository
18
+ uses: actions/checkout@v4
19
20
+ - name: Docker Hub Description
21
+ uses: peter-evans/dockerhub-description@v3
22
+ with:
23
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
24
+ password: ${{ secrets.DOCKERHUB_TOKEN_RWD }}
25
+ repository: nginxproxy/docker-gen
26
+ short-description: ${{ github.event.repository.description }}
27
+ enable-url-completion: true
0 commit comments