Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit 40f3101

Browse files
authored
Merge pull request #71 from ethereumfollowprotocol/workflow-automation/update-v1.0.14
Update AI Workflow Automation to v1.0.14
2 parents 1cf547a + b25c445 commit 40f3101

2 files changed

Lines changed: 51 additions & 0 deletions

File tree

.github/workflows/ai-on-demand.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: AI On-Demand Assistant
2+
on:
3+
issue_comment:
4+
types: [created]
5+
pull_request_review_comment:
6+
types: [created]
7+
pull_request_review:
8+
types: [submitted]
9+
issues:
10+
types: [opened]
11+
12+
permissions:
13+
contents: read
14+
issues: write
15+
pull-requests: write
16+
actions: read
17+
18+
jobs:
19+
ai-response:
20+
uses: ethereumfollowprotocol/workflow-automation/.github/workflows/issue-response.yml@v1.0.14
21+
with:
22+
config-profile: "default"
23+
bot-mention: "@efp-dev-ops"
24+
enable-auto-labeling: true
25+
enable-escalation: true
26+
secrets:
27+
DEV_OPS_BOT_CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.DEV_OPS_BOT_CLAUDE_CODE_OAUTH_TOKEN }}
28+
DEV_OPS_BOT_APP_ID: ${{ secrets.DEV_OPS_BOT_APP_ID }}
29+
DEV_OPS_BOT_PRIVATE_KEY: ${{ secrets.DEV_OPS_BOT_PRIVATE_KEY }}
30+
DEV_OPS_BOT_ALLOWED_USER_LIST: ${{ secrets.DEV_OPS_BOT_ALLOWED_USER_LIST }}

.github/workflows/ai-review.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: AI Code Review
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, reopened]
5+
6+
permissions:
7+
contents: read
8+
pull-requests: write
9+
issues: write
10+
actions: read
11+
12+
jobs:
13+
ai-review:
14+
uses: ethereumfollowprotocol/workflow-automation/.github/workflows/pr-review.yml@v1.0.14
15+
with:
16+
config-profile: "default"
17+
secrets:
18+
DEV_OPS_BOT_CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.DEV_OPS_BOT_CLAUDE_CODE_OAUTH_TOKEN }}
19+
DEV_OPS_BOT_APP_ID: ${{ secrets.DEV_OPS_BOT_APP_ID }}
20+
DEV_OPS_BOT_PRIVATE_KEY: ${{ secrets.DEV_OPS_BOT_PRIVATE_KEY }}
21+
DEV_OPS_BOT_ALLOWED_USER_LIST: ${{ secrets.DEV_OPS_BOT_ALLOWED_USER_LIST }}

0 commit comments

Comments
 (0)