There was an error while loading. Please reload this page.
1 parent cecc411 commit 4edbe1dCopy full SHA for 4edbe1d
1 file changed
.github/workflows/dockerhub-description.yml
@@ -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@v4
14
+
15
+ - name: Docker Hub Description
16
+ uses: peter-evans/dockerhub-description@v5
17
+ with:
18
+ username: ${{ secrets.DOCKERHUB_USER }}
19
+ password: ${{ secrets.DOCKERHUB_PASS }}
20
+ repository: pihole/pihole
21
+ short-description: ${{ github.event.repository.description }}
0 commit comments