Skip to content

Commit 592526c

Browse files
fix: Patch java pr #14
Signed-off-by: Francisco Javier Arceo <[email protected]>
1 parent fda7db7 commit 592526c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/java_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
head-sha: ${{ github.event.pull_request.head.sha }}
1818
excluded-dirs: 'docs/**,tests/**,examples/**'
1919
outputs:
20-
skip_tests: ${{ steps.some_step.outputs.skip_tests }} # ensure this is correctly defined
20+
skip_tests: ${{ needs.check_skip_tests.outputs.skip_tests }}
2121

2222
lint-java:
2323
# when using pull_request_target, all jobs MUST have this if check for 'ok-to-test' or 'approved' for security purposes.
@@ -85,7 +85,7 @@ jobs:
8585
if:
8686
((github.event.action == 'labeled' && (github.event.label.name == 'approved' || github.event.label.name == 'lgtm' || github.event.label.name == 'ok-to-test')) ||
8787
(github.event.action != 'labeled' && (contains(github.event.pull_request.labels.*.name, 'ok-to-test') || contains(github.event.pull_request.labels.*.name, 'approved') || contains(github.event.pull_request.labels.*.name, 'lgtm')))) &&
88-
github.repository == 'feast-dev/feast' && ()
88+
github.repository == 'feast-dev/feast'
8989
runs-on: ubuntu-latest
9090
strategy:
9191
matrix:

0 commit comments

Comments
 (0)