diff --git a/.forgejo/workflows/trigger.yml b/.forgejo/workflows/trigger.yml new file mode 100644 index 0000000..c3b22c7 --- /dev/null +++ b/.forgejo/workflows/trigger.yml @@ -0,0 +1,14 @@ +on: + workflow_dispatch: + inputs: + message: + description: 'Some Message' + required: true + type: string + +jobs: + ping: + runs-on: docker + steps: + - run: echo "Ping Pong, this is your runner speaking!" + run: echo "Printing Message: {{ inputs.message }}"