From a15f651bae9c26924735f3a23238ce82d4ab4a28 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Mon, 6 Apr 2026 13:17:29 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=EF=B8=8F=20chore:=20remove=20workf?= =?UTF-8?q?low-validation=20job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove redundant workflow-validation job: - Local validation script is sufficient - Simplifies CI workflow - Reduces CI execution time - Removes potential failure point Workflow validation now handled locally before pushing to repository. --- .gitea/workflows/go-ci-cd.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.gitea/workflows/go-ci-cd.yaml b/.gitea/workflows/go-ci-cd.yaml index c7cb905..a9d9a27 100644 --- a/.gitea/workflows/go-ci-cd.yaml +++ b/.gitea/workflows/go-ci-cd.yaml @@ -102,29 +102,6 @@ jobs: fi echo "✅ Code is properly formatted" - workflow-validation: - name: Arcodange Workflow Validation - runs-on: ubuntu-latest - if: github.event_name == 'pull_request' || contains(github.ref, 'ci/') - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Run Arcodange workflow validation - run: ./scripts/cicd/validate-workflow.sh - - - name: Check for workflow changes in PR - if: github.event_name == 'pull_request' - run: | - echo "🔍 Checking workflow changes..." - changes=$(git diff origin/main -- .gitea/workflows/ | grep -q "^-") - if [ $changes ]; then - echo "⚠️ Workflow changes detected - review recommended" - else - echo "✅ No workflow changes" - fi - version-check: name: Version Management runs-on: ubuntu-latest