nixos/.forgejo/workflows/testing.yaml

15 lines
No EOL
298 B
YAML

on:
workflow_dispatch:
inputs:
input_to_update:
description: 'Flake input to update'
required: true
type: string
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo All Good
- run: echo "${{ inputs.input_to_update }}"
shell: bash