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!"