diff --git a/.gitea/workflows/deploy-prod.yaml b/.gitea/workflows/deploy-prod.yaml index 7514a3c..2d51353 100644 --- a/.gitea/workflows/deploy-prod.yaml +++ b/.gitea/workflows/deploy-prod.yaml @@ -1,4 +1,4 @@ -name: deploy-prod +name: Deploy · Prod # Placeholder for the production rollout workflow. Today it only proves # the manual entry point works; the actual `docker save | ssh prod diff --git a/.gitea/workflows/dev-deploy.yaml b/.gitea/workflows/dev-deploy.yaml index d24f9bf..8337022 100644 --- a/.gitea/workflows/dev-deploy.yaml +++ b/.gitea/workflows/dev-deploy.yaml @@ -1,4 +1,4 @@ -name: dev-deploy +name: Deploy · Dev # Builds the Galaxy stack and (re)deploys it into the long-lived dev # environment on the host running this Gitea Actions runner. Triggered diff --git a/.gitea/workflows/go-unit.yaml b/.gitea/workflows/go-unit.yaml index 200d15b..7c2c10a 100644 --- a/.gitea/workflows/go-unit.yaml +++ b/.gitea/workflows/go-unit.yaml @@ -1,4 +1,4 @@ -name: go-unit +name: Tests · Go # Fast unit tests for the Go side of the monorepo. Runs on every push # and pull request whose path filter matches a Go source directory. diff --git a/.gitea/workflows/integration.yaml b/.gitea/workflows/integration.yaml index 240f244..dcdceec 100644 --- a/.gitea/workflows/integration.yaml +++ b/.gitea/workflows/integration.yaml @@ -1,4 +1,4 @@ -name: integration +name: Tests · Integration # Full integration suite (testcontainers-driven, ~5–10 minutes). Heavy # enough that we do not run it on every push to a feature branch — only diff --git a/.gitea/workflows/prod-build.yaml b/.gitea/workflows/prod-build.yaml index f511e81..fd4aa71 100644 --- a/.gitea/workflows/prod-build.yaml +++ b/.gitea/workflows/prod-build.yaml @@ -1,4 +1,4 @@ -name: prod-build +name: Build · Prod # Builds the production-grade Docker images and the UI bundle on every # merge into `main`, then saves the artifacts so a future diff --git a/.gitea/workflows/ui-test.yaml b/.gitea/workflows/ui-test.yaml index 5eff4ff..93ee672 100644 --- a/.gitea/workflows/ui-test.yaml +++ b/.gitea/workflows/ui-test.yaml @@ -1,4 +1,4 @@ -name: ui-test +name: Tests · UI # UI-side unit and end-to-end tests (Vitest + Playwright). The Go side # of the workspace is tested in `go-unit.yaml`. Both workflows can run