diff --git a/.forgejo/workflows/testing.yaml b/.forgejo/workflows/testing.yaml index f4abc03..a18a90b 100644 --- a/.forgejo/workflows/testing.yaml +++ b/.forgejo/workflows/testing.yaml @@ -1,6 +1,13 @@ on: [workflow_dispatch] + + +inputs: + input: + description: 'Input to update' + jobs: test: runs-on: ubuntu-latest steps: - - run: echo All Good \ No newline at end of file + - run: echo All Good + - run: echo "Update: ${{ inputs.input }}" \ No newline at end of file