mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-29 10:50:24 +00:00
17 lines
453 B
YAML
17 lines
453 B
YAML
name: 'Merge Dependencies'
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
auto-merge:
|
|
runs-on: ubuntu-latest
|
|
if: github.actor == 'dependabot[bot]'
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- 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"
|