lychee/.github/workflows/auto-merge.yml
Lucius Hu 7abbaa218a
ci: update checkout action to v3 (#927)
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2023-01-21 16:13:48 +01:00

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"