From 7203d5ea5132db92a1521e176503acbaa49b2e91 Mon Sep 17 00:00:00 2001 From: MaddoScientisto Date: Sat, 14 Mar 2026 17:40:03 +0100 Subject: [PATCH] Add demo pipeline workflow for push events --- .forgejo/workflows/demo-pipeline.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .forgejo/workflows/demo-pipeline.yaml diff --git a/.forgejo/workflows/demo-pipeline.yaml b/.forgejo/workflows/demo-pipeline.yaml new file mode 100644 index 0000000..8caa926 --- /dev/null +++ b/.forgejo/workflows/demo-pipeline.yaml @@ -0,0 +1,7 @@ +on: [push] +jobs: + demo-pipeline: + runs-on: docker # this is the label we have on the runner by default + steps: + - uses: https://code.forgejo.org/actions/checkout@v4 + - run: echo Hello World! This is a test \ No newline at end of file