Skip to content

Commit ef603ad

Browse files
authored
Merge pull request #316 from avaje/SentryMan-patch-1
Enable Dependabot Auto-Merge
2 parents 6769cef + 7e389ee commit ef603ad

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/dependabot-merge.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ jobs:
2020
env:
2121
PR_URL: ${{github.event.pull_request.html_url}}
2222
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
23-
# - name: Enable auto-merge for Dependabot PRs
24-
# if: ${{contains(steps.metadata.outputs.dependency-names, 'my-dependency') && steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
25-
# run: gh pr merge --auto --merge "$PR_URL"
26-
# env:
27-
# PR_URL: ${{github.event.pull_request.html_url}}
28-
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
23+
- name: Enable auto-merge for Dependabot PRs
24+
run: gh pr merge --auto --merge "$PR_URL"
25+
env:
26+
PR_URL: ${{github.event.pull_request.html_url}}
27+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

http-generator-client/src/main/java/io/avaje/http/generator/client/AnnotationUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void writeAnnotations(Append writer, Element element) {
2020
continue;
2121
}
2222
final String annotationName = annotationMirror.getAnnotationType().toString();
23-
final StringBuilder sb = new StringBuilder("@").append(annotationName).append("(");
23+
final StringBuilder sb = new StringBuilder(" @").append(annotationName).append("(");
2424
boolean first = true;
2525

2626
for (final var entry : annotationMirror.getElementValues().entrySet()) {

0 commit comments

Comments
 (0)