.gitea/workflows/test.yaml を削除

This commit is contained in:
2025-11-25 04:36:18 +00:00
parent 5f20fcc7bd
commit aeba1d87e6

View File

@@ -1,31 +0,0 @@
# .gitea/workflows/test.yaml
# 動作確認用の簡単なワークフロー
name: Test Workflow
on:
push:
branches:
- main
- master
workflow_dispatch: # 手動実行を有効化
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Print Info
run: |
echo "✅ Workflow is running!"
echo "Repository: ${{ github.repository }}"
echo "Branch: ${{ github.ref }}"
echo "Event: ${{ github.event_name }}"
echo "Working Directory: $(pwd)"
- name: Check Helm
run: |
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm version
- name: Success
run: echo "🎉 Test completed successfully!"