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 05f9c9e commit 2aff7b6Copy full SHA for 2aff7b6
.github/workflows/dockerhub-description.yml
@@ -0,0 +1,25 @@
1
+
2
+name: Update Docker Hub Description
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ paths:
8
+ - README.md
9
+ - .github/workflows/dockerhub-description.yml
10
+ workflow_dispatch:
11
12
+jobs:
13
+ dockerHubDescription:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Update Docker Hub description
18
+ uses: peter-evans/dockerhub-description@v4
19
+ with:
20
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
21
+ password: ${{ secrets.DOCKERHUB_PASSWORD }}
22
+ enable-url-completion: true
23
+ short-description: ${{ github.event.repository.description }}
24
+ repository: xianpengshen/clang-tools
25
+ readme-filepath: ./README.md
0 commit comments