Skip to content

Commit

Permalink
Create dockerhub-description.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shenxianpeng committed Mar 19, 2024
1 parent 05f9c9e commit f720db6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

name: Update Docker Hub Description
on:
push:
branches:
- master
paths:
- README.md
- .github/workflows/dockerhub-description.yml
workflow_dispatch:

jobs:
dockerHubDescription:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Docker Hub description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
enable-url-completion: true
short-description: ${{ github.event.repository.description }}
repository: xianpengshen/clang-tools
readme-filepath: ./README.md

0 comments on commit f720db6

Please sign in to comment.