We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 659ce09 commit c19db8fCopy full SHA for c19db8f
.github/workflows/dockerhub-description.yaml
@@ -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