commit 2ece894785d5860268347653ded76598f2665dc2 Author: James Brechtel Date: Mon Jun 1 10:38:52 2026 -0400 Add hello-world Gitea Actions workflow 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!"