Skip to content

Commit fcd44d3

Browse files
committed
ci: Docker Hub description update
1 parent 1502957 commit fcd44d3

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)