Skip to content

Deploy to production #137

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
Jul 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2fd36a7
Bump the quarkus group with 2 updates
dependabot[bot] Mar 10, 2025
a4c9482
Bump the quarkus group with 2 updates
dependabot[bot] Mar 17, 2025
719443a
Bump org.apache.commons:commons-csv from 1.13.0 to 1.14.0
dependabot[bot] Mar 24, 2025
5424fd9
Bump the quarkus group with 2 updates
dependabot[bot] Mar 24, 2025
ecccf93
Bump the maven-plugins group with 2 updates
dependabot[bot] Mar 31, 2025
43c8cd3
Bump the quarkus group with 2 updates
dependabot[bot] Mar 31, 2025
d59eba9
Bump actions/cache from 4.2.2 to 4.2.3 in the workflow-actions group
dependabot[bot] Apr 1, 2025
720cea6
Bump the quarkus group with 2 updates
dependabot[bot] Apr 7, 2025
ea1102e
Bump the quarkus group with 2 updates
dependabot[bot] Apr 14, 2025
bfffeb0
Bump com.diffplug.spotless:spotless-maven-plugin
dependabot[bot] Apr 14, 2025
690c53c
Bump the quarkus group with 2 updates
dependabot[bot] Apr 21, 2025
b976023
Bump the quarkus group with 2 updates
dependabot[bot] Apr 28, 2025
5219a6b
Bump actions/setup-java in the workflow-actions group
dependabot[bot] May 1, 2025
dfd6318
Bump the quarkus group with 2 updates
dependabot[bot] May 5, 2025
336a7c1
Bump the quarkus group with 2 updates
dependabot[bot] May 12, 2025
0fc5101
Bump the quarkus group with 2 updates
dependabot[bot] May 19, 2025
2e39d01
Bump the quarkus group with 2 updates
dependabot[bot] Jun 2, 2025
5e3c3e2
Bump com.diffplug.spotless:spotless-maven-plugin
dependabot[bot] Jun 2, 2025
b23ad05
Bump the quarkus group with 2 updates
dependabot[bot] Jun 9, 2025
5d90889
Bump the quarkus group with 2 updates
dependabot[bot] Jun 16, 2025
4b2ac55
Bump the quarkus group with 2 updates
dependabot[bot] Jun 23, 2025
33d4684
Bump the quarkus group with 2 updates
dependabot[bot] Jun 30, 2025
9678bca
Remove ` from issue summaries
marko-bekhta Jul 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2

- name: Set up JDK 21
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # 4.7.0
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # 4.7.1
with:
distribution: temurin
java-version: 21

- name: Cache local Maven repository
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # 4.2.2
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # 4.2.3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2

- name: Set up JDK 21
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # 4.7.0
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # 4.7.1
with:
distribution: temurin
java-version: 21
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.19.1</quarkus.platform.version>
<version.commons-csv>1.13.0</version.commons-csv>
<quarkus.platform.version>3.24.1</quarkus.platform.version>
<version.commons-csv>1.14.0</version.commons-csv>
<version.assertj>3.27.0</version.assertj>
<skipITs>true</skipITs>
<surefire-plugin.version>3.5.2</surefire-plugin.version>
<spotless-maven-plugin.version>2.44.3</spotless-maven-plugin.version>
<surefire-plugin.version>3.5.3</surefire-plugin.version>
<spotless-maven-plugin.version>2.44.5</spotless-maven-plugin.version>
<spotless.goal>apply</spotless.goal>
<quarkus-helm.version>1.2.7</quarkus-helm.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ protected JiraIssue issueToCreate(HandlerProjectContext projectContext, JiraIssu
JiraIssue destinationIssue = new JiraIssue();
destinationIssue.fields = new JiraFields();

destinationIssue.fields.summary = sourceIssue.fields.summary;
destinationIssue.fields.summary = JiraFields.formatSummary(sourceIssue.fields.summary);
destinationIssue.fields.description = sourceIssue.fields.description;
destinationIssue.fields.description = "%s%s".formatted(prepareDescriptionQuote(sourceIssue),
Objects.toString(sourceIssue.fields.description, ""));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private void handleDeletedMovedIssue(String type) {
JiraIssue updated = new JiraIssue();

updated.fields = new JiraFields();
updated.fields.summary = "%s upstream: %s".formatted(type, issue.fields.summary);
updated.fields.summary = "%s upstream: %s".formatted(type, JiraFields.formatSummary(issue.fields.summary));
if (issue.fields.labels == null) {
issue.fields.labels = List.of();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,9 @@ public String toString() {
+ properties() + '}';
}

public static String formatSummary(String summary) {
// for some reason Jira server does not like ` in the summaries and can result in very helpful "access denied" error responses
return summary.replace( "`", "" );
}

}