Skip to content

flake.lock: Update #201

flake.lock: Update

flake.lock: Update #201

Workflow file for this run

name: "pull-request"
on:
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- run: nix flake check -v
automerge:
if: contains(github.event.pull_request.labels.*.name, 'automerge')
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- run: gh pr merge --rebase --auto
env:
GH_TOKEN: ${{ secrets.GH_REPO_PAT }}