nixos/.forgejo/workflows/update_input.yaml
silver b1e3b51c79 Update .forgejo/workflows/update_input.yaml
Signed-off-by: silver <silver@skynet.ie>
2024-08-07 08:50:24 +00:00

24 lines
No EOL
654 B
YAML

on:
workflow_dispatch:
inputs:
input_to_update:
description: 'Flake input to update'
required: true
type: string
jobs:
update:
runs-on: nix
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- run: nix flake lock --update-input "${{ inputs.input_to_update }}"
shell: bash
- uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Updated flake for ${{ inputs.input_to_update }}"