mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 08:56:12 +02:00
tea/.github/workflows/automerge.yml
Oliver Klee f89dcb0842
[TASK] Switch to using GitHub's own automerge feature (#758)
Our current automerging CI task does not work reliably.

So instead of using a GitHub Action that does the automerging itself,
we are now using a GitHub Action that only triggers GitHub's own
automerge feature (which works a lot more reliably).
2023-02-24 11:20:27 +01:00

17 lines
359 B
YAML

name: automerge
on:
pull_request_target:
jobs:
automerge:
name: Dependabot auto-merge
runs-on: ubuntu-22.04
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- uses: peter-evans/enable-pull-request-automerge@v2
with:
pull-request-number: ${{ github.event.pull_request.number }}
merge-method: squash