From c0827fcf38c7f8a9ccf52aafe67496251aa81588 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 8 Mar 2026 22:41:18 +0000 Subject: [PATCH] Test workflow --- .gitea/workflows/hello.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/hello.yml diff --git a/.gitea/workflows/hello.yml b/.gitea/workflows/hello.yml new file mode 100644 index 0000000..25d4682 --- /dev/null +++ b/.gitea/workflows/hello.yml @@ -0,0 +1,18 @@ +name: Hello World + +on: + push: + branches: + - main # or your default branch + +jobs: + test: + runs-on: self-hosted + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Print Hello World + run: | + echo "Hello, Gitea runner!"