Skip to content

Commit e24bec0

Browse files
committed
Add Dependabot configuration and update documentation
- Add Dependabot config for automated GitHub Actions updates - Update README with comprehensive documentation - Add GHCR deployment details and CI/CD information - Improve troubleshooting section and deployment instructions - Add project structure and contributing guidelines
1 parent bad7450 commit e24bec0

File tree

2 files changed

+359
-59
lines changed

2 files changed

+359
-59
lines changed

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2
2+
updates:
3+
# Enable version updates for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
# Group all action updates into a single PR
9+
groups:
10+
docker-actions:
11+
patterns:
12+
- "docker/*"
13+
github-actions:
14+
patterns:
15+
- "actions/*"
16+
# Allow both major and minor version updates
17+
open-pull-requests-limit: 10

0 commit comments

Comments
 (0)