From d0854e1ff5e9ccbd31571d6698b3e14ee7a7935d Mon Sep 17 00:00:00 2001 From: Musiker15 Date: Thu, 2 Jul 2026 09:24:22 +0200 Subject: [PATCH] docs(readme): document the actual branch workflow (PRs target main) The workflow section still described a develop-integration flow. In practice direct pushes to main are blocked and feature branches PR straight against main, squash-merged once CI is green (merging main auto-deploys). --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0154011..1f42eba 100644 --- a/README.md +++ b/README.md @@ -91,12 +91,11 @@ pnpm dev ## Branches & CI/CD -- `main` → production (auto-deploy via SSH → PM2) -- `develop` → integration -- Feature branches → PR against `develop` +- `main` → production (auto-deploy via SSH → PM2); direct pushes are blocked. +- Feature branches → PR against `main` → squash-merge once CI is green. Every PR runs **CI** (lint, typecheck, build, test, Prisma validate) and -**CodeQL**. `main` deploys automatically to `forms.msk-scripts.de`. +**CodeQL**. Merging to `main` deploys automatically to `forms.msk-scripts.de`. ---