From 2ece894785d5860268347653ded76598f2665dc2 Mon Sep 17 00:00:00 2001 From: James Brechtel Date: Mon, 1 Jun 2026 10:38:52 -0400 Subject: [PATCH] Add hello-world Gitea Actions workflow --- .gitea/workflows/hello-world.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitea/workflows/hello-world.yml diff --git a/.gitea/workflows/hello-world.yml b/.gitea/workflows/hello-world.yml new file mode 100644 index 0000000..d6e7335 --- /dev/null +++ b/.gitea/workflows/hello-world.yml @@ -0,0 +1,10 @@ +name: Hello World +on: [push] + +jobs: + hello: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Say hello + run: echo "Hello, Gitea Actions!"