From 6a1d1efe9515fe6d8dc3386a005bc09a01ad099d Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Wed, 11 Feb 2026 19:36:26 +0100 Subject: [PATCH] ci: temporarily disable all chack-agent workflows --- .github/workflows/chack-agent-pr-triage.yml | 6 ++++-- .github/workflows/ci-master-failure-chack-agent-pr.yml | 3 ++- .github/workflows/pr-failure-chack-agent-dispatch.yml | 6 ++++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/chack-agent-pr-triage.yml b/.github/workflows/chack-agent-pr-triage.yml index d4f18cd..ad60f40 100644 --- a/.github/workflows/chack-agent-pr-triage.yml +++ b/.github/workflows/chack-agent-pr-triage.yml @@ -7,7 +7,8 @@ on: jobs: chack_agent_triage: - if: ${{ github.event.workflow_run.conclusion == 'success' }} + # Temporarily disabled by maintainer request. + if: ${{ false && github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest permissions: contents: write @@ -156,7 +157,8 @@ jobs: merge_or_comment: runs-on: ubuntu-latest needs: chack_agent_triage - if: ${{ github.event.workflow_run.conclusion == 'success' && needs.chack_agent_triage.outputs.should_run == 'true' && needs.chack_agent_triage.outputs.decision != '' }} + # Temporarily disabled by maintainer request. + if: ${{ false && github.event.workflow_run.conclusion == 'success' && needs.chack_agent_triage.outputs.should_run == 'true' && needs.chack_agent_triage.outputs.decision != '' }} permissions: contents: write pull-requests: write diff --git a/.github/workflows/ci-master-failure-chack-agent-pr.yml b/.github/workflows/ci-master-failure-chack-agent-pr.yml index b179f7d..4b63b4a 100644 --- a/.github/workflows/ci-master-failure-chack-agent-pr.yml +++ b/.github/workflows/ci-master-failure-chack-agent-pr.yml @@ -7,8 +7,9 @@ on: jobs: chack_agent_fix_master_failure: + # Temporarily disabled by maintainer request. if: > - ${{ github.event.workflow_run.conclusion == 'failure' && + ${{ false && github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.head_branch == 'master' && !startsWith(github.event.workflow_run.head_commit.message, 'Fix CI-master failures for run #') }} runs-on: ubuntu-latest diff --git a/.github/workflows/pr-failure-chack-agent-dispatch.yml b/.github/workflows/pr-failure-chack-agent-dispatch.yml index 9889cae..61e995e 100644 --- a/.github/workflows/pr-failure-chack-agent-dispatch.yml +++ b/.github/workflows/pr-failure-chack-agent-dispatch.yml @@ -7,8 +7,9 @@ on: jobs: resolve_pr_context: + # Temporarily disabled by maintainer request. if: > - ${{ github.event.workflow_run.conclusion == 'failure' && + ${{ false && github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.pull_requests && github.event.workflow_run.pull_requests[0] && !startsWith(github.event.workflow_run.head_commit.message, 'Fix CI failures for PR #') }} @@ -57,7 +58,8 @@ jobs: chack_agent_on_failure: needs: resolve_pr_context - if: ${{ needs.resolve_pr_context.outputs.author == 'carlospolop' && needs.resolve_pr_context.outputs.should_run == 'true' }} + # Temporarily disabled by maintainer request. + if: ${{ false && needs.resolve_pr_context.outputs.author == 'carlospolop' && needs.resolve_pr_context.outputs.should_run == 'true' }} runs-on: ubuntu-latest permissions: contents: write