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

28 lines
594 B
YAML
Raw Normal View History

name: Nix (Update Inputs)
2023-09-10 20:51:13 +02:00
on:
workflow_call:
secrets:
PAT:
required: true
2023-09-10 20:51:13 +02:00
jobs:
update:
if: github.repository == 'hyprwm/Hyprland'
2023-09-10 20:51:13 +02:00
name: inputs
runs-on: ubuntu-latest
steps:
- name: Clone repository
2024-11-06 18:50:01 +01:00
uses: actions/checkout@v4
2023-09-10 20:51:13 +02:00
with:
token: ${{ secrets.PAT }}
- uses: DeterminateSystems/nix-installer-action@main
2023-09-10 20:51:13 +02:00
- name: Update inputs
run: nix/update-inputs.sh
- name: Commit
2024-11-06 18:50:01 +01:00
uses: stefanzweifel/git-auto-commit-action@v5
2023-09-10 20:51:13 +02:00
with:
commit_message: "[gha] Nix: update inputs"