-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add
dockerhub-description
workflow
- Loading branch information
1 parent
0f7ba17
commit 7e54e38
Showing
2 changed files
with
33 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: 'Update DockerHub Description' | ||
on: | ||
push: | ||
branches: ['main'] | ||
paths: | ||
- 'README.md' | ||
- '.github/workflows/dockerhub-description.yml' | ||
jobs: | ||
dockerHubDescription: | ||
runs-on: 'ubuntu-latest' | ||
steps: | ||
- name: 'Checkout the codebase' | ||
uses: 'actions/checkout@v4' | ||
|
||
- name: 'DockerHub Description' | ||
uses: 'peter-evans/dockerhub-description@v4' | ||
with: | ||
username: 'antmelekhin' | ||
password: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
short-description: ${{ github.event.repository.description }} | ||
enable-url-completion: true |
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