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:
158
158
git push origin
159
159
160
160
- 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
10
10
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
11
11
platformPlugins =java
12
12
# Gradle Releases -> https://github.com/gradle/gradle/releases
13
- gradleVersion =8.5
13
+ gradleVersion =8.7
14
14
# Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html
15
15
org.gradle.configuration-cache =true
16
16
# 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