nixos/.forgejo/workflows/testing.yaml

15 lines
298 B
YAML
Raw Normal View History

2024-08-06 21:49:04 +00:00
on:
workflow_dispatch:
inputs:
input_to_update:
description: 'Flake input to update'
required: true
type: string
2024-08-06 21:41:00 +00:00
2024-08-06 21:22:21 +00:00
jobs:
test:
runs-on: ubuntu-latest
steps:
2024-08-06 21:41:00 +00:00
- run: echo All Good
2024-08-06 21:49:04 +00:00
- run: echo "${{ inputs.input_to_update }}"
2024-08-06 21:44:50 +00:00
shell: bash