From 6f54563a1e30ccfabf4d44e9c5f0b8e0dc345b92 Mon Sep 17 00:00:00 2001 From: AI Bot Date: Wed, 8 Oct 2025 21:30:45 +0000 Subject: [PATCH] "chore(ci): add success message to validation step" --- .gitea/workflows/ci.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7e17fea..860feed 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,14 +1,15 @@ -name: CI -on: - push: - branches: [ main ] - pull_request: -jobs: - build: - runs-on: docker - steps: - - uses: actions/checkout@v4 - - name: Validate structure - run: | - test -f project/plan.md - test -f roles/mission_control.md + name: CI + on: + push: + branches: [ main ] + pull_request: + jobs: + build: + runs-on: docker + steps: + - uses: actions/checkout@v4 + - name: Validate structure + run: | + test -f project/plan.md + test -f roles/mission_control.md + echo "✅ Structure validated successfully." \ No newline at end of file