- `cura` without disallowed areas for Ender 3 printers - `udiskie` service for automounting - Emacs - removed `vimish-fold` and `evil-vimish-fold` - added `origami` - added `highlight-indent-guides` - restored and improved `dirvish`
23 lines
676 B
YAML
23 lines
676 B
YAML
name: update-flake-lock
|
|
on:
|
|
workflow_dispatch: # allows manual triggering
|
|
schedule:
|
|
- cron: '0 2 * * 6' # runs weekly on Friday at 02:00 AM
|
|
|
|
jobs:
|
|
lockfile:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: cachix/install-nix-action@v17
|
|
|
|
- name: Update flake.lock
|
|
uses: DeterminateSystems/update-flake-lock@v9
|
|
with:
|
|
pr-title: "Automatic `flake.lock` update"
|
|
pr-labels: |
|
|
flake-inputs
|
|
automatic
|
|
token: ${{ secrets.PR_UPDATE_FLAKE_TOKEN }} # to open the PR using my GitHub account, needed to trigger the `check` workflow
|