File tree Expand file tree Collapse file tree 4 files changed +24
-19
lines changed
vaadin-maps-leaflet-flow-demo Expand file tree Collapse file tree 4 files changed +24
-19
lines changed Original file line number Diff line number Diff line change @@ -223,9 +223,12 @@ jobs:
223
223
git push origin
224
224
225
225
- name : pull-request
226
- uses : repo-sync/pull-request@v2
227
- with :
228
- destination_branch : " develop"
229
- pr_title : " Sync back"
230
- pr_body : " An automated PR to sync changes back"
231
-
226
+ env :
227
+ GH_TOKEN : ${{ github.token }}
228
+ run : |
229
+ gh_pr_up() {
230
+ gh pr create "$@" || gh pr edit "$@"
231
+ }
232
+ gh_pr_up -B "develop" \
233
+ --title "Sync back" \
234
+ --body "An automated PR to sync changes back"
Original file line number Diff line number Diff line change @@ -81,12 +81,14 @@ jobs:
81
81
echo "abort=0" >> $GITHUB_OUTPUT
82
82
83
83
- name : pull-request
84
- uses : repo-sync/pull-request@v2
85
84
if : steps.main.outputs.abort == 0
86
- with :
87
- github_token : ${{ secrets.GITHUB_TOKEN }}
88
- source_branch : ${{ env.UPDATE_BRANCH }}
89
- destination_branch : ${{ steps.main.outputs.current_branch }}
90
- pr_title : " Update from template"
91
- pr_body : " An automated PR to sync changes from the template into this repo"
92
-
85
+ env :
86
+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
87
+ run : |
88
+ gh_pr_up() {
89
+ gh pr create "$@" || gh pr edit "$@"
90
+ }
91
+ gh_pr_up -B "${{ steps.main.outputs.current_branch }}" \
92
+ -H "${{ env.UPDATE_BRANCH }}" \
93
+ --title "Update from template" \
94
+ --body "An automated PR to sync changes from the template into this repo"
Original file line number Diff line number Diff line change 26
26
<mainClass >software.xdev.vaadin.Application</mainClass >
27
27
28
28
<!-- Dependency-Versions -->
29
- <vaadin .version>24.1.8 </vaadin .version>
29
+ <vaadin .version>24.1.11 </vaadin .version>
30
30
31
- <org .springframework.boot.version>3.1.3 </org .springframework.boot.version>
31
+ <org .springframework.boot.version>3.1.4 </org .springframework.boot.version>
32
32
</properties >
33
33
34
34
<dependencyManagement >
Original file line number Diff line number Diff line change 49
49
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
50
50
51
51
<!-- Dependency-Versions -->
52
- <vaadin .version>24.1.8 </vaadin .version>
52
+ <vaadin .version>24.1.11 </vaadin .version>
53
53
</properties >
54
54
55
55
<dependencyManagement >
123
123
<plugin >
124
124
<groupId >com.mycila</groupId >
125
125
<artifactId >license-maven-plugin</artifactId >
126
- <version >4.2 </version >
126
+ <version >4.3 </version >
127
127
<configuration >
128
128
<properties >
129
129
<email >${project.organization.url} </email >
178
178
<plugin >
179
179
<groupId >org.apache.maven.plugins</groupId >
180
180
<artifactId >maven-javadoc-plugin</artifactId >
181
- <version >3.5 .0</version >
181
+ <version >3.6 .0</version >
182
182
<executions >
183
183
<execution >
184
184
<id >attach-javadocs</id >
You can’t perform that action at this time.
0 commit comments