mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
22 lines
463 B
YAML
22 lines
463 B
YAML
name: Changelog
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
changelog:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ github.head_ref }}
|
|
- run: npm install -g @anthropic-ai/claude-code
|
|
- uses: wevm/changelogs-rs/gen@master
|
|
with:
|
|
ai: 'claude -p'
|
|
env:
|
|
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|