Hyprland/.github/workflows/nix-update-wlroots.yml

27 lines
514 B
YAML
Raw Normal View History

2023-09-10 21:51:13 +03:00
name: Nix
on:
workflow_call:
secrets:
PAT:
required: true
2022-05-21 13:39:15 +03:00
jobs:
2023-09-10 21:51:13 +03:00
update:
name: wlroots
2022-05-21 13:39:15 +03:00
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
2022-05-31 11:47:56 +03:00
with:
2023-09-10 21:51:13 +03:00
token: ${{ secrets.PAT }}
- uses: DeterminateSystems/nix-installer-action@main
2023-09-10 21:51:13 +03:00
- name: Update lockfile
run: nix/update-wlroots.sh
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v4
2022-07-31 15:19:28 +03:00
with:
2023-09-10 21:51:13 +03:00
commit_message: "[gha] Nix: update wlroots"