mirror of
https://github.com/tom-snow/docker-ComWechat.git
synced 2025-01-07 21:45:51 +08:00
21 lines
612 B
YAML
21 lines
612 B
YAML
name: Update Docker Hub Description
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- README.md
|
|
- .github/workflows/docker_doc.yml
|
|
jobs:
|
|
dockerHubDescription:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
|
short-description: ${{ github.event.repository.description }}
|
|
repository: ${{ secrets.DOCKER_HUB_USERNAME }}/docker-com_wechat_robot |