Update .forgejo/workflows/testing.yaml

This commit is contained in:
silver 2024-08-06 21:49:04 +00:00
parent 44a7186a40
commit ed0be4507a

View file

@ -1,14 +1,15 @@
on: [workflow_dispatch]
inputs:
input:
description: 'Input to update'
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 }}"
- run: echo "${{ inputs.input_to_update }}"
shell: bash