From 6e46ef0955d17df817963f79630c7538178030eb Mon Sep 17 00:00:00 2001 From: 0xthrpw <0xthrpw@gmail.com> Date: Mon, 13 Apr 2026 21:52:49 -0400 Subject: [PATCH] Remove AI review workflows and config Remove unused AI-powered PR review workflows and configuration to reduce automated access surface area. Files removed: - .github/workflows/ai-review.yml - .github/workflows/ai-on-demand.yml --- .github/workflows/ai-on-demand.yml | 30 ------------------------------ .github/workflows/ai-review.yml | 21 --------------------- 2 files changed, 51 deletions(-) delete mode 100644 .github/workflows/ai-on-demand.yml delete mode 100644 .github/workflows/ai-review.yml diff --git a/.github/workflows/ai-on-demand.yml b/.github/workflows/ai-on-demand.yml deleted file mode 100644 index 72dd476..0000000 --- a/.github/workflows/ai-on-demand.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: AI On-Demand Assistant -on: - issue_comment: - types: [created] - pull_request_review_comment: - types: [created] - pull_request_review: - types: [submitted] - issues: - types: [opened] - -permissions: - contents: read - issues: write - pull-requests: write - actions: read - -jobs: - ai-response: - uses: ethereumfollowprotocol/workflow-automation/.github/workflows/issue-response.yml@v1.0.14 - with: - config-profile: "default" - bot-mention: "@efp-dev-ops" - enable-auto-labeling: true - enable-escalation: true - secrets: - DEV_OPS_BOT_CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.DEV_OPS_BOT_CLAUDE_CODE_OAUTH_TOKEN }} - DEV_OPS_BOT_APP_ID: ${{ secrets.DEV_OPS_BOT_APP_ID }} - DEV_OPS_BOT_PRIVATE_KEY: ${{ secrets.DEV_OPS_BOT_PRIVATE_KEY }} - DEV_OPS_BOT_ALLOWED_USER_LIST: ${{ secrets.DEV_OPS_BOT_ALLOWED_USER_LIST }} \ No newline at end of file diff --git a/.github/workflows/ai-review.yml b/.github/workflows/ai-review.yml deleted file mode 100644 index fe84c0f..0000000 --- a/.github/workflows/ai-review.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: AI Code Review -on: - pull_request: - types: [opened, synchronize, reopened] - -permissions: - contents: read - pull-requests: write - issues: write - actions: read - -jobs: - ai-review: - uses: ethereumfollowprotocol/workflow-automation/.github/workflows/pr-review.yml@v1.0.14 - with: - config-profile: "default" - secrets: - DEV_OPS_BOT_CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.DEV_OPS_BOT_CLAUDE_CODE_OAUTH_TOKEN }} - DEV_OPS_BOT_APP_ID: ${{ secrets.DEV_OPS_BOT_APP_ID }} - DEV_OPS_BOT_PRIVATE_KEY: ${{ secrets.DEV_OPS_BOT_PRIVATE_KEY }} - DEV_OPS_BOT_ALLOWED_USER_LIST: ${{ secrets.DEV_OPS_BOT_ALLOWED_USER_LIST }} \ No newline at end of file