Fix automerge config (#904)

With the latest changes in https://github.com/lycheeverse/lychee/pull/893 I think I broke automerge.
Reverting some of the changes to fix that.
This commit is contained in:
Matthias Endler 2023-01-05 14:51:36 +01:00 committed by GitHub
parent 9afc51edf7
commit 20ecb618e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
name: 'Merge Dependencies'
on: [pull_request_target]
on:
pull_request:
jobs:
auto-merge:
@ -8,6 +9,9 @@ jobs:
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v2
uses: ahmadnassri/action-dependabot-auto-merge@v2.6.6
- uses: ahmadnassri/action-dependabot-auto-merge@v2.6.6
with:
github-token: ${{ secrets.AUTOMERGE_TOKEN }}
github-token: ${{ secrets.AUTOMERGE_TOKEN }}
# Merge all updates as long as they pass CI.
# Includes minor and patch updates.
update_type: "semver:major"