name: Test Gitea Actions on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Test Action run: | echo "Gitea Actions is working!" echo "Repository: ${{ github.repository }}" echo "Branch: ${{ github.ref }}"