diff --git a/.forgejo/workflows/update_input.yaml b/.forgejo/workflows/update_input.yaml new file mode 100644 index 0000000..2966a28 --- /dev/null +++ b/.forgejo/workflows/update_input.yaml @@ -0,0 +1,15 @@ +on: + workflow_dispatch: + inputs: + input_to_update: + description: 'Flake input to update' + required: true + type: string + +jobs: + update: + runs-on: nix + steps: + - uses: actions/checkout@v4 + - run: nix flake update "${{ inputs.input_to_update }}" + shell: bash \ No newline at end of file