⬆️ Updates peter-evans/create-or-update-comment digest to 213b1f9 #470
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
--- | |
####################################### | |
####################################### | |
## Dependabot automerge dependencies ## | |
####################################### | |
####################################### | |
# | |
# Documentation: | |
# https://medium.com/@toufik.airane/automerge-github-dependabot-alerts-with-github-actions-7cd6f5763750 | |
# | |
###################### | |
# name of the action # | |
###################### | |
name: automerge on pull request | |
############### | |
# When to run # | |
############### | |
on: [ pull_request ] | |
################# | |
# Start the job # | |
################# | |
jobs: | |
automerge: | |
name: automerge dependabot | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' && github.repository == 'megalinter/megalinter' | |
steps: | |
- name: Wait for CI/CT/CD to succeed | |
uses: fountainhead/[email protected] | |
id: wait-for-build | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
checkName: Tests + Deploy Docker Image - DEV | |
ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
- name: Wait for CI/CT/CD to succeed pt2 | |
uses: fountainhead/[email protected] | |
id: wait-for-ci | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
checkName: MegaLinter | |
ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
- name: merge | |
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@v6 | |
with: | |
script: | | |
github.pulls.createReview({ | |
owner: context.payload.repository.owner.login, | |
repo: context.payload.repository.name, | |
pull_number: context.payload.pull_request.number, | |
event: 'APPROVE' | |
}) | |
github.pulls.merge({ | |
owner: context.payload.repository.owner.login, | |
repo: context.payload.repository.name, | |
pull_number: context.payload.pull_request.number | |
}) |