-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make dependency review wait for build submission
- Loading branch information
1 parent
f835114
commit 211161a
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,9 +27,21 @@ permissions: | |
pull-requests: write | ||
|
||
jobs: | ||
wait-for-build: | ||
name: 'Wait for build to complete' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: lewagon/[email protected] | ||
with: | ||
ref: ${{ github.ref }} | ||
check-name: 'Build with Gradle Wrapper' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
allowed-conclusions: success | ||
|
||
dependency-submission: | ||
name: 'Dependency submission' | ||
runs-on: ubuntu-latest | ||
needs: wait-for-build | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
|