Skip to content

build(flake): update flake.lock #107

build(flake): update flake.lock

build(flake): update flake.lock #107

Workflow file for this run

name: Auto-merge PRs
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
auto-merge-pr:
runs-on: ubuntu-latest
if: ${{ github.actor == 'nix-update-flakes[bot]' }}
steps:
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.PAT_NIX_PR}}
- name: Enable auto-merge for Nix Update Flakes PRs
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.PAT_NIX_PR}}