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
5 changes: 4 additions & 1 deletion .github/workflows/update-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ jobs:
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible to use the GH release app?

git config --local user.name "github-actions[bot]"
# Checkout the proper branch (handle both PR and push events)
BRANCH_NAME="${{ github.head_ref || github.ref_name }}"
git checkout "$BRANCH_NAME"
git add packages/builder/src/export/versions.ts
git commit -m "chore: update export versions"
git push
git push origin "$BRANCH_NAME"
Loading