commit f344b9adc1527abdb2ed36a1a1bb2c80c34181c8 Author: billsedison Date: Wed Aug 13 00:04:11 2025 +0800 Init workflows diff --git a/.gitea/workflows/test_ai_workflow.yaml b/.gitea/workflows/test_ai_workflow.yaml new file mode 100644 index 0000000..abb5f8f --- /dev/null +++ b/.gitea/workflows/test_ai_workflow.yaml @@ -0,0 +1,21 @@ +name: Test Workflow Triggers + +on: + workflow_dispatch: + inputs: + submissionId: + description: 'Submission ID' + required: true + type: string + challengeId: + description: 'Challenge ID' + required: true + type: string + +jobs: + workflow-trigger-test: + runs-on: ubuntu-latest + steps: + - run: | + echo "Submission ID: ${{ inputs.submissionId }}" + echo "Challenge ID: ${{ inputs.challengeId }}" \ No newline at end of file diff --git a/.gitea/workflows/test_ai_workflows.yaml b/.gitea/workflows/test_ai_workflows.yaml new file mode 100644 index 0000000..97733c9 --- /dev/null +++ b/.gitea/workflows/test_ai_workflows.yaml @@ -0,0 +1,21 @@ +name: Test Workflow Triggers + +on: + workflow_dispatch: + inputs: + submissionId: + description: 'Submission ID' + required: true + type: string + challengeId: + description: 'Challenge ID' + required: true + type: string + +jobs: + workflow-trigger-test: + runs-on: ubuntu-latest + steps: + - run: | + echo "Submission ID: ${{ inputs.submissionId }}" + echo "Challenge ID: ${{ inputs.challengeId }}"