From f344b9adc1527abdb2ed36a1a1bb2c80c34181c8 Mon Sep 17 00:00:00 2001 From: billsedison Date: Wed, 13 Aug 2025 00:04:11 +0800 Subject: [PATCH] Init workflows --- .gitea/workflows/test_ai_workflow.yaml | 21 +++++++++++++++++++++ .gitea/workflows/test_ai_workflows.yaml | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .gitea/workflows/test_ai_workflow.yaml create mode 100644 .gitea/workflows/test_ai_workflows.yaml 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 }}"