Compare commits

...

3 Commits

Author SHA1 Message Date
Carlos Polop
6a1d1efe95 ci: temporarily disable all chack-agent workflows 2026-02-11 19:36:26 +01:00
Carlos Polop
cf3565d7e0 Revert "test: intentional ci break for chack agent workflow validation"
This reverts commit 386ef0642a.
2026-02-11 17:17:46 +01:00
Carlos Polop
386ef0642a test: intentional ci break for chack agent workflow validation 2026-02-11 17:05:14 +01:00
3 changed files with 10 additions and 5 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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