Skip to content

Update Claude Code Docs #1444

Update Claude Code Docs

Update Claude Code Docs #1444

Workflow file for this run

name: Update Claude Code Docs
on:
schedule:
- cron: '0 * * * *' # Every hour
workflow_dispatch: # Allow manual trigger
permissions:
contents: write
jobs:
update-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download docs
run: bash Scripts/download-cc-docs.sh
- name: Commit and push if changed
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add -A
if git diff --cached --quiet; then
echo "No changes detected"
else
git commit -m "docs: update Claude Code documentation"
git push
fi