mirror of
https://github.com/Hopiu/lychee.git
synced 2026-05-03 03:14:47 +00:00
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.
17 lines
454 B
YAML
17 lines
454 B
YAML
name: 'Merge Dependencies'
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
auto-merge:
|
|
runs-on: ubuntu-latest
|
|
if: github.actor == 'dependabot[bot]'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ahmadnassri/action-dependabot-auto-merge@v2.6.6
|
|
with:
|
|
github-token: ${{ secrets.AUTOMERGE_TOKEN }}
|
|
# Merge all updates as long as they pass CI.
|
|
# Includes minor and patch updates.
|
|
update_type: "semver:major"
|