commit 03b09de3acf47851e7b618e5ad878b9b70b3d4cb Author: Crizomb Date: Sun Dec 21 21:30:32 2025 +0100 first test 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)"