name: Hello World on: push: branches: [ main ] jobs: say_hello: runs-on: docker steps: - name: Manual Checkout run: | git clone https://${{ gitea.server_url }}/${{ gitea.repository }} . git checkout ${{ gitea.ref_name }} - name: Say Hello run: echo "Hello, world from Gitea Actions!"