mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-13 20:39:33 -05:00
Merge pull request #576 from github/FIxAutomationAgain
adding more logic
This commit is contained in:
commit
3a52b6c541
1 changed files with 9 additions and 1 deletions
10
.github/workflows/automerge-dependabot.yml
vendored
10
.github/workflows/automerge-dependabot.yml
vendored
|
@ -37,8 +37,16 @@ jobs:
|
||||||
checkName: Deploy Docker Image - DEV
|
checkName: Deploy Docker Image - DEV
|
||||||
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
||||||
|
|
||||||
|
- name: Wait for CI/CT/CD to succeed pt2
|
||||||
|
uses: fountainhead/action-wait-for-check@v1.0.0
|
||||||
|
id: wait-for-ci
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
checkName: Stack linter
|
||||||
|
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
||||||
|
|
||||||
- name: merge
|
- name: merge
|
||||||
if: steps.wait-for-build.outputs.conclusion == 'success' || steps.wait-for-build.outputs.conclusion == 'skipped'
|
if: steps.wait-for-build.outputs.conclusion == 'success' || steps.wait-for-build.outputs.conclusion == 'skipped' && steps.wait-for-ci.outputs.conclusion == 'success'
|
||||||
uses: actions/github-script@v2
|
uses: actions/github-script@v2
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
|
|
Loading…
Reference in a new issue