Skip to content

resolved a bug in actions #67

resolved a bug in actions

resolved a bug in actions #67

Workflow file for this run

name: Doc-Pilot
on: [push, pull_request]
permissions:
actions: read
contents: write
jobs:
add-docstring:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: DocPilot
persist-credentials: false
submodules: "recursive"
fetch-depth: 100
- name: Get files Changes
uses: lots0logs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Fetch Commit Changes
id: fetch_changes
run: |
cd DocPilot
# files changed can be accessed through ${HOME}/files.json
git diff HEAD~1 HEAD --output="temp.txt"
grep '^\+' temp.txt > diff.txt
- name: Run Claude Magic
run: |
cd DocPilot
python3 claude/script.py ${{secrets.ANTHROPIC_API_KEY}}