Auto-merge Renovate PRs #353
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
# See https://github.com/ridedott/merge-me-action/ | |
# This workflow automates merges from patches sent by Renovate, and | |
# only by renovate, once the other CI workflows pass | |
name: "Auto-merge Renovate PRs" | |
on: # yamllint disable-line rule:truthy | |
workflow_run: | |
types: | |
- "completed" | |
workflows: | |
- "Integrate" | |
jobs: | |
merge-me: | |
name: "Auto-merge Renovate PRs" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Auto-Merge" | |
if: "${{ github.event.workflow_run.conclusion == 'success' }}" | |
uses: "ridedott/merge-me-action@v2.10.66" | |
with: | |
GITHUB_LOGIN: "renovate" | |
GITHUB_TOKEN: "${{ secrets.LCTRS_BOT_TOKEN }}" | |
MERGE_METHOD: "MERGE" |