2023-03-02 00:50:59 -05:00
|
|
|
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: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Nix
|
|
|
|
uses: cachix/install-nix-action@v16
|
|
|
|
with:
|
|
|
|
extra_nix_config: |
|
2023-03-02 01:08:38 -05:00
|
|
|
auto-optimise-store = true
|
2023-03-02 00:50:59 -05:00
|
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
2023-03-02 01:08:38 -05:00
|
|
|
experimental-features = nix-command flakes
|
2023-03-02 00:50:59 -05:00
|
|
|
- name: Update flake.lock
|
2023-03-02 00:52:04 -05:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v16
|
2023-03-02 00:50:59 -05:00
|
|
|
with:
|
|
|
|
pr-title: "chore: update flake.lock" # Title of PR to be created
|
|
|
|
pr-labels: | # Labels to be set on the PR
|
|
|
|
dependencies
|
|
|
|
automated
|