Skip to content

flake: update nixpkgs inputs #5

flake: update nixpkgs inputs

flake: update nixpkgs inputs #5

Workflow file for this run

name: auto-merge dependabot
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
automerge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: dependabot/fetch-metadata@v1
id: metadata
with:
github-token: ${{ github.token }}
- name: enable auto-merge
if: steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --auto --rebase "$PR"
env:
PR: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ github.token }}