From d0dc24b83cc49e9264e065083f715d871808948e Mon Sep 17 00:00:00 2001 From: Tom Bloor Date: Fri, 7 Mar 2025 16:00:43 +0000 Subject: [PATCH] Fix CI and add basic run --- .forgejo/workflows/demo.yml | 8 ++++++++ .forgejo/workflows/trigger.yml | 5 +++-- 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 .forgejo/workflows/demo.yml 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 }}"