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

27 lines
514 B
YAML
Raw Normal View History

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