Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/sync-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ jobs:
gh pr edit "${EXISTING}" --title "${PR_TITLE}" --body "${PR_BODY}"
echo "Updated existing PR #${EXISTING}"
else
# Create the 'automated' label if it doesn't exist so PR creation
# does not fail. The label is optional; fall back gracefully.
gh label create automated --description "Automated PR opened by a GitHub Actions workflow" --color 0E8A16 2>/dev/null || true
gh pr create --head "${SYNC_BRANCH}" --base master \
--title "${PR_TITLE}" --body "${PR_BODY}" \
--label "documentation" --label "automated"
Expand Down