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@v4
        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@v5
        with:
          commit_message: "[gha] Nix: update inputs"