Skip to content

Commit

Permalink
include the develocity info
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchooly committed Nov 12, 2024
1 parent 75dd250 commit 5d75028
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ on:
jobs:
Build:
uses: evanchooly/workflows/.github/workflows/pull-request.yml@master
secrets:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
with:
java: 17
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public String getDescription() {
public TreeVisitor<?, ExecutionContext> getVisitor() {
return Preconditions.check(new UsesMethod<>(PIPELINE), new JavaIsoVisitor<>() {

public MethodInvocation visitMethodInvocation(MethodInvocation method, ExecutionContext p) {
public MethodInvocation visitMethodInvocation(MethodInvocation method, ExecutionContext ignored) {
if (!PIPELINE.matches(method.getSelect())) {
return method;
}
Expand Down

0 comments on commit 5d75028

Please sign in to comment.