From 0d20cba5de215f860764b87ad7f49762a418bad2 Mon Sep 17 00:00:00 2001 From: Ranuka Ranasinghe <110180949+ranuka-laksika@users.noreply.github.com> Date: Wed, 6 May 2026 19:54:48 +0530 Subject: [PATCH 1/2] Disable auto-label job in workflow Disable auto-labeling job by setting condition to false. --- .github/workflows/auto_label.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/auto_label.yml b/.github/workflows/auto_label.yml index 4f4627b7..ded90e9f 100644 --- a/.github/workflows/auto_label.yml +++ b/.github/workflows/auto_label.yml @@ -7,6 +7,7 @@ on: jobs: auto-label: runs-on: ubuntu-latest + if: false name: Auto-label issues for Claude processing steps: - name: Install GitHub & Claude CLI From 0c2962f6b7be82288a34640605de40446aa6a219 Mon Sep 17 00:00:00 2001 From: Ranuka Ranasinghe <110180949+ranuka-laksika@users.noreply.github.com> Date: Wed, 6 May 2026 19:55:37 +0530 Subject: [PATCH 2/2] Remove schedule and workflow_dispatch triggers Disable scheduled and manual triggers for the workflow. --- .github/workflows/claude_runner.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/claude_runner.yml b/.github/workflows/claude_runner.yml index 72f082bf..bec76d54 100644 --- a/.github/workflows/claude_runner.yml +++ b/.github/workflows/claude_runner.yml @@ -3,9 +3,9 @@ name: Claude Code • Auto PR on Comment on: issue_comment: types: [created] - schedule: - - cron: "0 * * * *" - workflow_dispatch: {} + # schedule: + # - cron: "0 * * * *" + # workflow_dispatch: {} concurrency: group: doc-fixing-ai-agent @@ -14,7 +14,7 @@ concurrency: jobs: get_issue_and_assign: runs-on: ubuntu-latest - if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' + if: false steps: - uses: actions/checkout@v4 @@ -53,10 +53,7 @@ jobs: run_claude: runs-on: ubuntu-latest - if: | - contains(github.event.comment.body, '@wso2-engineering-bot') && - (github.event.comment.author_association == 'OWNER' || - github.event.comment.author_association == 'MEMBER') + if: false steps: - name: Checkout original repository uses: actions/checkout@v4