We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47002b8 commit f1ac7a4Copy full SHA for f1ac7a4
1 file changed
.github/workflows/docker-readme.yml
@@ -0,0 +1,27 @@
1
+---
2
+name: Update Docker Hub Description
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - README.md
9
+ - .github/workflows/docker-readme.yml
10
+
11
+jobs:
12
+ dockerHubDescription:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
18
+ - name: Docker Hub Description
19
+ uses: peter-evans/dockerhub-description@v4
20
+ with:
21
+ username: ${{ secrets.DOCKER_USERNAME }}
22
+ password: ${{ secrets.DOCKER_TOKEN }}
23
+ repository: opensips/opensips
24
+ readme-filepath: ./README.md
25
+ short-description: ${{ github.event.repository.description }}
26
+ enable-url-completion: true
27
0 commit comments