Skip to content

Commit efee433

Browse files
author
Dennis Kieselhorst
authored
chore: merge after successful release automation test
2 parents 9af380b + 158fe6e commit efee433

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v2
18+
- name: Configure Git User # may be removed after https://github.com/actions/checkout/issues/13 is resolved
19+
run: |
20+
git config user.email "${{ github.actor }}@users.noreply.github.com"
21+
git config user.name "${{ github.actor }}"
1822
- name: Set up Maven
1923
uses: actions/setup-java@v2
2024
with:

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@
171171
<artifactId>maven-release-plugin</artifactId>
172172
<configuration>
173173
<preparationGoals>clean verify install</preparationGoals>
174-
<pushChanges>false</pushChanges>
175174
<localCheckout>true</localCheckout>
175+
<scmCommentPrefix>chore: release </scmCommentPrefix>
176176
</configuration>
177177
</plugin>
178178
</plugins>
@@ -193,7 +193,7 @@
193193
<plugin>
194194
<groupId>org.apache.maven.plugins</groupId>
195195
<artifactId>maven-gpg-plugin</artifactId>
196-
<version>1.6</version>
196+
<version>3.0.1</version>
197197
<executions>
198198
<execution>
199199
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)