mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 21:25:58 +01:00
9447fcd603
- move unnecessary toplevel files to nix/ - added patch that ignores the submodule (revert) - add update script run by a workflow
25 lines
650 B
YAML
25 lines
650 B
YAML
name: "Nix: update lockfile"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 */14 * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v3
|
|
- name: Install nix
|
|
uses: cachix/install-nix-action@v17
|
|
with:
|
|
install_url: https://releases.nixos.org/nix/nix-2.8.0/install
|
|
extra_nix_config: |
|
|
auto-optimise-store = true
|
|
experimental-features = nix-command flakes
|
|
- name: Update lockfile
|
|
run: nix/update-inputs.sh
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "[gha] bump flake inputs"
|