mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-08 07:20:59 +00:00
Bumps the dependencies group with 1 update: [actions/checkout](https://github.com/actions/checkout). - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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@v4
|
|
- 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"
|