mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 22:05:58 +01:00
26 lines
514 B
YAML
26 lines
514 B
YAML
name: Nix
|
|
|
|
on:
|
|
workflow_call:
|
|
secrets:
|
|
PAT:
|
|
required: true
|
|
|
|
jobs:
|
|
update:
|
|
name: wlroots
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.PAT }}
|
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
|
- name: Update lockfile
|
|
run: nix/update-wlroots.sh
|
|
|
|
- name: Commit
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "[gha] Nix: update wlroots"
|