This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
emacs/.forgejo/workflows/update-flake-lock.yaml
Andrea Ciceri a75bbaa386
All checks were successful
/ test (push) Successful in 17s
[CI] Forgejo action to update the lockfile
2024-03-09 01:14:46 +01:00

18 lines
512 B
YAML

name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
jobs:
lockfile:
runs-on: nix
steps:
- uses: actions/checkout@v4
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
with:
pr-title: "Update flake.lock" # Title of PR to be created
pr-labels: | # Labels to be set on the PR
dependencies
automated