From 03b09de3acf47851e7b618e5ad878b9b70b3d4cb Mon Sep 17 00:00:00 2001 From: Crizomb Date: Sun, 21 Dec 2025 21:30:32 +0100 Subject: [PATCH] first test --- .forgejo/workflows/hello.yml | 15 +++++++++++++++ hello.sh | 4 ++++ 2 files changed, 19 insertions(+) create mode 100644 .forgejo/workflows/hello.yml create mode 100755 hello.sh diff --git a/.forgejo/workflows/hello.yml b/.forgejo/workflows/hello.yml new file mode 100644 index 0000000..86f0d92 --- /dev/null +++ b/.forgejo/workflows/hello.yml @@ -0,0 +1,15 @@ +name: Hello World CI + +on: + push: + workflow_dispatch: + +jobs: + hello: + runs-on: linux + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Run hello script + run: ./hello.sh diff --git a/hello.sh b/hello.sh new file mode 100755 index 0000000..0cc081f --- /dev/null +++ b/hello.sh @@ -0,0 +1,4 @@ +#!/bin/sh +echo "👋 Hello from Forgejo Runner!" +echo "Running on host: $(hostname)" +echo "Date: $(date)"