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 68d8df8 commit a41ad31Copy full SHA for a41ad31
.github/workflows/dockerhub-description.yaml
@@ -0,0 +1,21 @@
1
+name: Update Docker Hub Description
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ paths:
7
+ - README.md
8
+ - .github/workflows/dockerhub-description.yml
9
+jobs:
10
+ dockerHubDescription:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+
15
+ - name: Docker Hub Description
16
+ uses: peter-evans/dockerhub-description@v2
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