File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -158,8 +158,12 @@ jobs:
158158 git push origin
159159
160160 - name : pull-request
161- uses : repo-sync/pull-request@v2
162- with :
163- destination_branch : " develop"
164- pr_title : " Sync back"
165- pr_body : " An automated PR to sync changes back"
161+ env :
162+ GH_TOKEN : ${{ github.token }}
163+ run : |
164+ gh_pr_up() {
165+ gh pr create "$@" || gh pr edit "$@"
166+ }
167+ gh_pr_up -B "develop" \
168+ --title "Sync back" \
169+ --body "An automated PR to sync changes back"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ platformVersion=2023.1.6
1010# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
1111platformPlugins =java
1212# Gradle Releases -> https://github.com/gradle/gradle/releases
13- gradleVersion =8.5
13+ gradleVersion =8.7
1414# Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html
1515org.gradle.configuration-cache =true
1616# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
You can’t perform that action at this time.
0 commit comments