mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-26 07:36:12 +01:00
f89dcb0842
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).
17 lines
359 B
YAML
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
|