# Runner smoke test. Runs on every push/PR to confirm the act_runner # (see gitea/docker-compose.yml + gitea/config.yaml) is picking up jobs. name: hello-world on: push: pull_request: workflow_dispatch: jobs: hello: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Say hello run: echo "Hello from Gitea Actions on ${{ gitea.server_url }}" - name: Show context run: | echo "repo=${{ gitea.repository }} ref=${{ gitea.ref }} sha=${{ gitea.sha }}" node --version