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