chore: fix claude codes updater workflow (#1544)

This commit is contained in:
Ralph Khreish
2025-12-22 18:02:26 +01:00
committed by GitHub
parent feba156067
commit 3f489d8116

View File

@@ -26,20 +26,11 @@ jobs:
permissions:
contents: write
pull-requests: write
issues: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: next
fetch-depth: 0 # Need full history to checkout specific commit
- name: Create docs update branch
id: create-branch
run: |
BRANCH_NAME="docs/auto-update-$(date +%Y%m%d-%H%M%S)"
git checkout -b $BRANCH_NAME
echo "branch_name=$BRANCH_NAME" >> $GITHUB_OUTPUT
- name: Run Claude Code to Update Documentation
uses: anthropics/claude-code-action@v1
@@ -79,47 +70,34 @@ jobs:
Only make changes if the documentation truly needs updating based on the code changes.
- name: Check if changes were made
id: check-changes
run: |
if git diff --quiet; then
echo "has_changes=false" >> $GITHUB_OUTPUT
else
echo "has_changes=true" >> $GITHUB_OUTPUT
git add -A
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -m "docs: auto-update documentation based on changes in next branch
- name: Create Pull Request
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: docs/auto-update-${{ github.run_id }}
base: next
title: "docs: update documentation for recent changes"
commit-message: |
docs: auto-update documentation based on changes in next branch
This PR was automatically generated to update documentation based on recent changes.
Original commit: ${{ inputs.commit_message }}
Co-authored-by: Claude <claude-assistant@anthropic.com>"
fi
- name: Push changes and create PR
if: steps.check-changes.outputs.has_changes == 'true'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git push origin ${{ steps.create-branch.outputs.branch_name }}
Co-authored-by: Claude <claude-assistant@anthropic.com>
body: |
## 📚 Documentation Update
# Create PR using GitHub CLI
gh pr create \
--title "docs: update documentation for recent changes" \
--body "## 📚 Documentation Update
This PR automatically updates documentation based on recent changes merged to the \`next\` branch.
This PR automatically updates documentation based on recent changes merged to the `next` branch.
### Original Changes
**Commit:** ${{ inputs.commit_sha }}
**Message:** ${{ inputs.commit_message }}
### Changed Files in Original Commit
\`\`\`
```
${{ inputs.changed_files }}
\`\`\`
```
### Documentation Updates
This PR includes documentation updates to reflect the changes above. Please review to ensure:
@@ -129,8 +107,9 @@ jobs:
- [ ] Style is consistent with existing documentation
---
*This PR was automatically generated by Claude Code GitHub Action*" \
--base next \
--head ${{ steps.create-branch.outputs.branch_name }} \
--label "documentation" \
--label "automated"
*This PR was automatically generated by Claude Code GitHub Action*
labels: |
documentation
automated
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
delete-branch: true