Create dockerhub-description.yml
This commit is contained in:
parent
fd0a1eaef1
commit
7f0ef2e3b2
1 changed files with 22 additions and 0 deletions
22
.github/workflows/dockerhub-description.yml
vendored
Normal file
22
.github/workflows/dockerhub-description.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
name: Update Docker Hub Description
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- README.md
|
||||||
|
- .github/workflows/dockerhub-description.yml
|
||||||
|
jobs:
|
||||||
|
dockerHubDescription:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Docker Hub Description
|
||||||
|
uses: peter-evans/dockerhub-description@v4
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_U }}
|
||||||
|
password: ${{ secrets.DOCKER_P }}
|
||||||
|
repository: yojoshb/jmusicbot
|
||||||
|
short-description: ${{ github.event.repository.description }}
|
||||||
|
enable-url-completion: true
|
||||||
Loading…
Reference in a new issue