mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 17:25:55 -05:00
commit
92ee17e007
2 changed files with 14 additions and 0 deletions
5
.github/CODEOWNERS
vendored
5
.github/CODEOWNERS
vendored
|
@ -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]
|
||||
|
|
9
.github/workflows/automerge-dependabot.yml
vendored
9
.github/workflows/automerge-dependabot.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Reference in a new issue