3 changed files with 32 additions and 4 deletions
@ -0,0 +1,25 @@ |
|||||
|
name: Update Docker Hub Description |
||||
|
on: |
||||
|
workflow_dispatch: |
||||
|
push: |
||||
|
paths: |
||||
|
- README.md |
||||
|
- .github/workflows/dockerhub-description.yml |
||||
|
branches: |
||||
|
- main |
||||
|
|
||||
|
jobs: |
||||
|
dockerhub-description: |
||||
|
name: Docker Hub Description |
||||
|
runs-on: ubuntu-latest |
||||
|
steps: |
||||
|
- name: Checkout |
||||
|
uses: actions/checkout@v4 |
||||
|
|
||||
|
- name: Docker Hub Description |
||||
|
uses: peter-evans/dockerhub-description@v4 |
||||
|
with: |
||||
|
username: ${{ secrets.DOCKER_HUB_USERNAME }} |
||||
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} |
||||
|
repository: ${{ secrets.DOCKER_HUB_REPO }} |
||||
|
short-description: ${{ github.event.repository.description }} |
@ -1,6 +1,7 @@ |
|||||
{ |
{ |
||||
"recommendations": [ |
"recommendations": [ |
||||
"editorconfig.editorconfig", |
"editorconfig.editorconfig", |
||||
"esbenp.prettier-vscode" |
"esbenp.prettier-vscode", |
||||
] |
"github.vscode-github-actions" |
||||
|
] |
||||
} |
} |
||||
|
Loading…
Reference in new issue