From ea89ed725d35f790961c3d482d7679c29b63744d Mon Sep 17 00:00:00 2001 From: Nubenetes Bot Date: Tue, 19 May 2026 10:51:41 +0200 Subject: [PATCH] ci: block merge commits from bot branches in maintenance workflows [skip ci] --- .github/workflows/agentic_v2_builder.yml | 3 ++- .github/workflows/readme_sync.yml | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/agentic_v2_builder.yml b/.github/workflows/agentic_v2_builder.yml index f2fb4790..77d16fef 100644 --- a/.github/workflows/agentic_v2_builder.yml +++ b/.github/workflows/agentic_v2_builder.yml @@ -34,7 +34,8 @@ jobs: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/develop' && - !contains(github.event.head_commit.message, '[skip ci]')) + !contains(github.event.head_commit.message, '[skip ci]') && + !contains(github.event.head_commit.message, 'bot/v2-elite-sync')) steps: - name: Repository Synchronization uses: actions/checkout@v4 diff --git a/.github/workflows/readme_sync.yml b/.github/workflows/readme_sync.yml index 3eb7c254..fb57cb01 100644 --- a/.github/workflows/readme_sync.yml +++ b/.github/workflows/readme_sync.yml @@ -18,7 +18,10 @@ concurrency: jobs: sync-readme: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[skip ci]')" + if: | + !contains(github.event.head_commit.message, '[skip ci]') && + !contains(github.event.head_commit.message, 'bot/v2-elite-sync') && + !contains(github.event.head_commit.message, 'bot/knowledge-update') steps: - name: Repository Synchronization uses: actions/checkout@v4