should work now
This commit is contained in:
parent
da14e6cca1
commit
6c165a2676
1 changed files with 17 additions and 13 deletions
30
.github/workflows/flake-update.yml
vendored
30
.github/workflows/flake-update.yml
vendored
|
@ -1,21 +1,25 @@
|
||||||
name: update-flake-lock
|
name: Flake Lock Updater
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: # allows manual triggering
|
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 0" # runs weekly on Sunday at 00:00
|
# Pi o'clock
|
||||||
|
- cron: "0 0 * * 0"
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lockfile:
|
lock-updater:
|
||||||
runs-on: ubuntu-latest
|
name: Flake Lock Updater
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- uses: actions/checkout@v3
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Install Nix
|
|
||||||
uses: DeterminateSystems/nix-installer-action@v4
|
|
||||||
- name: Update flake.lock
|
|
||||||
uses: DeterminateSystems/update-flake-lock@v19
|
|
||||||
with:
|
with:
|
||||||
pr-title: "chore: Update flake.lock" # Title of PR to be created
|
fetch-depth: 0
|
||||||
pr-labels: | # Labels to be set on the PR
|
- uses: DeterminateSystems/nix-installer-action@v4
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@v2
|
||||||
|
- uses: DeterminateSystems/update-flake-lock@v19
|
||||||
|
with:
|
||||||
|
pr-title: "chore: update flake.lock"
|
||||||
|
# Labels to be set on the PR
|
||||||
|
pr-labels: |
|
||||||
dependencies
|
dependencies
|
||||||
automated
|
automated
|
||||||
|
|
Loading…
Reference in a new issue