Skip to content

Commit 829606f

Browse files
committed
Merge remote-tracking branch 'origin/update-from-template' into develop
2 parents ddcc478 + 99eb057 commit 829606f

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff 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"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ platformVersion=2023.1.6
1010
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
1111
platformPlugins=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
1515
org.gradle.configuration-cache=true
1616
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html

0 commit comments

Comments
 (0)