We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5054b75 commit f591d9dCopy full SHA for f591d9d
.github/workflows/update-jib-base-image.yml
@@ -49,15 +49,14 @@ jobs:
49
git config --global user.name "github-actions[bot]"
50
git config --global user.email "github-actions[bot]@users.noreply.github.com"
51
52
- # Create a new branch
53
branch_name="update-eclipse-temurin-$latest_version"
54
git checkout -b "$branch_name"
55
56
- # Add and commit the changes
57
- git add JShellAPI/build.gradle
+ git add "$gradle_file"
58
git commit -m "Update eclipse-temurin version to $latest_version"
59
60
- # Push the new branch to the remote repository
+ git fetch origin
+ git rebase origin/develop
61
git push origin "$branch_name"
62
63
- name: Create a pull request
0 commit comments