finished µLinkShortener v2

This commit is contained in:
MarcUs7i 2025-07-11 00:59:08 +02:00
parent ef76ad92ec
commit 71bdd08da9
117 changed files with 10892 additions and 1685 deletions

View file

@ -1,14 +1,32 @@
version: 2
updates:
- package-ecosystem: "gomod"
# Monitor npm dependencies
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
# Enable version updates for GitHub Actions
- package-ecosystem: "github-actions"
versioning-strategy: auto
labels:
- "dependencies"
- "npm"
# Monitor Docker dependencies
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
open-pull-requests-limit: 5
labels:
- "dependencies"
- "docker"
# Monitor GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "github-actions"

View file

@ -36,9 +36,10 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/marcus7i/ulinkshortener
images: ghcr.io/${{ github.repository }}
tags: |
type=raw,value=latest
type=ref,event=tag
type=raw,value=latest,enable={{is_default_branch}}
type=sha,format=short
type=ref,event=branch
type=ref,event=pr
@ -50,5 +51,5 @@ jobs:
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64, linux/arm64/v8
tags: ghcr.io/marcus7i/ulinkshortener:latest
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}