Skip to content

Commit d6c48ca

Browse files
committed
Merge branch 'dev'
2 parents e929bcf + 1592777 commit d6c48ca

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.dependabot/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 1
2+
update_configs:
3+
- package_manager: "docker"
4+
directory: "/"
5+
update_schedule: "daily"
6+
open-pull-requests-limit: 5
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Update Docker Hub Description
2+
on:
3+
release:
4+
types: [published]
5+
workflow_dispatch:
6+
jobs:
7+
dockerHubDescription:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Docker Hub Description
13+
uses: peter-evans/dockerhub-description@v3
14+
with:
15+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
16+
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
17+
short-description: ${{ github.event.repository.description }}
18+
readme-filepath: .github/README.md

0 commit comments

Comments
 (0)