Skip to content

Commit

Permalink
Add workflow to update Docker hub description
Browse files Browse the repository at this point in the history
  • Loading branch information
TrafeX committed Oct 10, 2021
1 parent 32f1025 commit ec8fe44
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dockerhub-description.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Update Docker Hub Description
on:
push:
branches:
- master
paths:
- README.md
- .github/workflows/dockerhub-description.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.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: trafex/wordpress
short-description: ${{ github.event.repository.description }}

0 comments on commit ec8fe44

Please sign in to comment.