commit b9f16103e06ed72ef7c98ba3dbfdc4e21c29992e Author: jamie Date: Thu Jan 8 00:15:16 2026 +1100 feat: add basic Gitea Actions test workflow Adds a simple workflow to verify Gitea Actions is running correctly. Triggers on push to main and manual dispatch. diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..ef1aa45 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,23 @@ +name: Test Workflow + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Test Action Running + run: | + echo "Gitea Actions is working!" + echo "Repository: ${{ gitea.repository }}" + echo "Branch: ${{ gitea.ref_name }}" + echo "Commit: ${{ gitea.sha }}" + echo "Runner: $(uname -a)" + date