Skip to content

nix: bump hls-src from 82a7d79 to b7e5d25 in the nix group #21

nix: bump hls-src from 82a7d79 to b7e5d25 in the nix group

nix: bump hls-src from 82a7d79 to b7e5d25 in the nix group #21

name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
automerge:
runs-on: ubuntu-22.04
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
# Patch and minor auto-merge for any ecosystem; majors only for nix,
# where a bump is a flake.lock input revision rather than an API break.
- name: Enable auto-merge
if: >-
steps.metadata.outputs.update-type == 'version-update:semver-patch' ||
steps.metadata.outputs.update-type == 'version-update:semver-minor' ||
(steps.metadata.outputs.update-type == 'version-update:semver-major' && steps.metadata.outputs.package-ecosystem == 'nix')
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}