mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-06 22:40:58 +00:00
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:
parent
9afc51edf7
commit
20ecb618e4
1 changed files with 7 additions and 3 deletions
10
.github/workflows/auto-merge.yml
vendored
10
.github/workflows/auto-merge.yml
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue