Merge pull request #522 from github/fixAutoAgain

Fix auto again
This commit is contained in:
Lukas Gravley 2020-08-05 12:01:18 -05:00 committed by GitHub
commit 92ee17e007
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

5
.github/CODEOWNERS vendored
View file

@ -2,3 +2,8 @@
# These owners will be the default owners for everything in the repo #
######################################################################
* @admiralawkbar @jwiebalk @zkoppert @IAmHughes @nemchik @Hanse00
####################################################
# Adding dependabot for auto merge on dependancies #
####################################################
* @dependabot[bot]

View file

@ -29,7 +29,16 @@ jobs:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Wait for CI/CT/CD to succeed
uses: fountainhead/action-wait-for-check@v1.0.0
id: wait-for-build
with:
token: ${{ secrets.GITHUB_TOKEN }}
checkName: Deploy Docker Image - DEV
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- name: merge
if: steps.wait-for-build.outputs.conclusion == 'success'
uses: actions/github-script@v2
with:
script: |