Some checks failed
Desktop CI — Headless Tests & Build / Compose Desktop — Tests (headless) & Build (push) Has been skipped
Build and Publish Docker Images / build-and-push (., backend/services/mail/Dockerfile, mail-service, mail-service) (push) Successful in 5m56s
Build and Publish Docker Images / build-and-push (., config/docker/caddy/web-app/Dockerfile, web-app, web-app) (push) Failing after 6m57s
- **Docker-Publish:** Reduziere auf Mail-Service und Web-App für schnellere Builds. - **Workflows:** Überspringe Plan-B-Builds basierend auf Commit-Message ([planb]). - **Frontend:** Aktualisiere Build-Skripte für Wasm-Distribution statt JS.
17 lines
502 B
YAML
17 lines
502 B
YAML
name: PR Guard
|
|
on:
|
|
pull_request:
|
|
branches: [ "**" ]
|
|
jobs:
|
|
no-hardcoded-versions:
|
|
# Für Plan-B-Builds überspringen: Commit-Message enthält [planb]
|
|
if: ${{ !contains(github.event.head_commit.message, '[planb]') }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run hardcoded versions check
|
|
shell: bash
|
|
run: |
|
|
chmod +x config/quality/check-no-hardcoded-versions.sh
|
|
config/quality/check-no-hardcoded-versions.sh
|