Skip to content
Merged
Changes from 2 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
4 changes: 4 additions & 0 deletions .github/workflows/update-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ jobs:
shell: bash
run: |
echo "merging main @ $main_sha into release @ $release_sha";

# Getting rid of the changes caused by "Configure Gradle"
Copy link
Member

Choose a reason for hiding this comment

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

This comment could be more specific. What changes are being undone, why?

git stash

Copy link
Contributor

Choose a reason for hiding this comment

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

Nit: As noted in offline conversation, git stash -- gradle/wrapper/gradle-wrapper.properties would be a safer command here.

git switch release;
input_message=${{ inputs.commit_message }}
message=${input_message:-"Merging main into release"}
Expand Down
Loading