Skip to content
Merged
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
13 changes: 5 additions & 8 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,11 @@ jobs:
# Push to the new branch
git push origin "$BRANCH_NAME"

# Create a pull request using GitHub CLI
gh pr create \
--title "Update Changelog" \
--body "Automated changelog update" \
--base master \
--head "$BRANCH_NAME"

echo "✅ Changelog PR created: $BRANCH_NAME"
# Provide URL for manual PR creation
PR_URL="https://github.com/WorkNow-S-R-O/worknow/pull/new/$BRANCH_NAME"
echo "✅ Changelog branch created: $BRANCH_NAME"
echo "📝 Create PR manually at: $PR_URL"
echo "🔗 Or use: gh pr create --title 'Update Changelog' --body 'Automated changelog update' --base master --head $BRANCH_NAME"
else
echo "No changes to commit"
fi
Loading