DO64: Trigger update chain registry workflow on published/prerelease event with tags #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AI PR Bot | |
on: | |
pull_request: | |
types: [opened, reopened, ready_for_review, synchronize] | |
jobs: | |
ai-pr-bot: | |
runs-on: ubuntu-latest | |
# | |
if: github.event.repository.private == false # NOTICE: only run on public repositories | |
# | |
steps: | |
- uses: jacsamell/github-pr-bot@v1 | |
with: | |
anthropic_api_key: ${{ secrets.CLAUDE_API_KEY }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
auto_review: true | |
auto_describe: true | |
auto_improve: false | |
enable_auto_approval: false | |
model: 'anthropic/claude-sonnet-4-20250514' | |
max_model_tokens: '100000' | |
require_trigger: false |