diff --git a/.forgejo/workflows/demo.yml b/.forgejo/workflows/demo.yml new file mode 100644 index 0000000..f121162 --- /dev/null +++ b/.forgejo/workflows/demo.yml @@ -0,0 +1,8 @@ +on: + pull_request: + +jobs: + ping: + runs-on: docker + steps: + - run: echo "Ping Pong, this is your runner speaking!" diff --git a/.forgejo/workflows/trigger.yml b/.forgejo/workflows/trigger.yml index ceeca46..47084db 100644 --- a/.forgejo/workflows/trigger.yml +++ b/.forgejo/workflows/trigger.yml @@ -10,5 +10,6 @@ jobs: ping: runs-on: docker steps: - - run: echo "Ping Pong, this is your runner speaking!" - - run: echo "Printing Message: ${{ inputs.message }}" + - run: | + echo "Ping Pong, this is your runner speaking!" + echo "Printing Message: ${{ inputs.message }}"