feat: add Gitea Actions test workflow and setup documentation
Test Gitea Actions / test (push) Has been cancelled
continuous-integration/drone/push Build is passing

- Add simple test workflow to verify Gitea Actions functionality
- Create comprehensive setup guide for troubleshooting Actions
- Include runner installation and registration steps
- Document common issues and solutions

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-07-12 09:28:06 +02:00
parent 288b0c25e6
commit 0b550cdaf6
2 changed files with 170 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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 }}"