dotfiles/.github/workflows/update.yml

39 lines
1.1 KiB
YAML
Raw Normal View History

2023-07-29 19:20:14 +00:00
name: Update Flake
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '33 3 * * 0' # runs weekly on Sunday at 03:33
permissions:
2023-07-30 13:37:52 +00:00
contents: write
2023-07-30 13:23:29 +00:00
pull-requests: write
2023-07-29 19:20:14 +00:00
jobs:
lockfile:
name: Lockfile
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4
- name: Check Nixpkgs Inputs
uses: DeterminateSystems/flake-checker-action@v5
- name: Add Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@v2
2023-07-29 19:20:14 +00:00
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v19
2023-07-29 19:20:14 +00:00
id: update
with:
pr-title: "Update flake.lock" # Title of PR to be created
pr-labels: | # Labels to be set on the PR
dependencies
automated
- name: Check the Flake
run: nix flake check
2023-07-29 19:20:14 +00:00
- name: Enable Pull Request Automerge
run: gh pr merge --rebase --auto ${{ steps.update.outputs.pull-request-number }}
env:
GH_TOKEN: ${{ github.token }}