-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add github action workflows to update README on DockerHub
Signed-off-by: Dusan Malusev <dusan.malusev@scylladb.com>
- Loading branch information
1 parent
01e0694
commit 6f2eea2
Showing
3 changed files
with
362 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
description: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Docker Hub Description | ||
uses: peter-evans/dockerhub-description@v4 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
repository: scylladb/cassandra-stress | ||
short-description: ${{ github.event.repository.description }} | ||
enable-url-completion: true |
Oops, something went wrong.