adds a check for build workflow succeeding before auto-merge
This commit is contained in:
parent
56a76ce6d2
commit
58fe47af84
1 changed files with 3 additions and 0 deletions
3
.github/workflows/DependabotAutoMerge.yml
vendored
3
.github/workflows/DependabotAutoMerge.yml
vendored
|
|
@ -14,8 +14,11 @@ permissions:
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
build_check:
|
||||||
|
uses: ./.github/workflows/maven.yml@main
|
||||||
dependabot:
|
dependabot:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: build_check
|
||||||
if: github.event.pull_request.user.login == 'dependabot[bot]'
|
if: github.event.pull_request.user.login == 'dependabot[bot]'
|
||||||
steps:
|
steps:
|
||||||
- name: Dependabot metadata
|
- name: Dependabot metadata
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue