Skip to content

Commit c19db8f

Browse files
committed
Automate description dockerhub
1 parent 659ce09 commit c19db8f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Update Docker Hub Description
2+
on:
3+
push:
4+
branches:
5+
- main
6+
paths:
7+
- README.md
8+
- .github/workflows/dockerhub-description.yaml
9+
jobs:
10+
dockerHubDescription:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Docker Hub Description
16+
uses: peter-evans/dockerhub-description@v3
17+
with:
18+
username: ${{ secrets.DOCKERHUB_USERNAME }}
19+
password: ${{ secrets.DOCKERHUB_PASSWORD }}
20+
repository: peterevans/dockerhub-description
21+
short-description: ${{ github.event.repository.description }}

0 commit comments

Comments
 (0)