We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cce9540 + 1f7e7b2 commit 0d69762Copy full SHA for 0d69762
.github/workflows/dockerhub-description.yml
@@ -0,0 +1,22 @@
1
+name: Update Docker Hub Description
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ - develop
7
+ paths:
8
+ - README.md
9
+ - .github/workflows/dockerhub-description.yml
10
+jobs:
11
+ dockerHubDescription:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+
16
+ - name: Docker Hub Description
17
+ uses: grokability/dockerhub-description@7ea9d275c7cdbe2b676a093a0308c50665e3b8b4
18
+ with:
19
+ username: ${{ secrets.DOCKER_USERNAME }}
20
+ password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
21
+ repository: snipe/snipe-it
22
+ readme-filepath: ./README.md
0 commit comments