From 31167160f2bbd417b6b6b737380c4d07187b44fd Mon Sep 17 00:00:00 2001 From: oabrivard Date: Wed, 11 Feb 2026 09:47:49 +0100 Subject: [PATCH] Updated implementation plan to postpone some tasks --- docs/4_work_plan/overall-plan.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/docs/4_work_plan/overall-plan.md b/docs/4_work_plan/overall-plan.md index eb65c9f..d68bec8 100644 --- a/docs/4_work_plan/overall-plan.md +++ b/docs/4_work_plan/overall-plan.md @@ -451,10 +451,9 @@ services: **Priority:** HIGH **Duration:** 2-3 days -**GitHub Actions Workflows:** +**Go Task (https://github.com/go-task/task) Workflows:** ``` -.github/workflows/ -├── ci.yml # Lint, test, build on every PR +tasks/ ├── security-scan.yml # SAST/DAST scanning ├── deploy-dev.yml # Deploy to development (on merge to develop) └── deploy-prod.yml # Deploy to production (on release tag) @@ -789,3 +788,16 @@ infrastructure/k8s/ ├── grafana/ └── jaeger/ ``` + +### Github Actions CI/CD Pipeline + +**GitHub Actions Workflows:** +``` +.github/workflows/ +├── ci.yml # Lint, test, build on every PR +├── security-scan.yml # SAST/DAST scanning +├── deploy-dev.yml # Deploy to development (on merge to develop) +└── deploy-prod.yml # Deploy to production (on release tag) +``` + +---