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] on:
workflow_dispatch:
inputs:
inputs: input_to_update:
input: description: 'Flake input to update'
description: 'Input to update' required: true
type: string
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: echo All Good - run: echo All Good
- run: echo "${{ inputs.input }}" - run: echo "${{ inputs.input_to_update }}"
shell: bash shell: bash