Init workflows

This commit is contained in:
billsedison
2025-08-13 00:04:11 +08:00
commit f344b9adc1
2 changed files with 42 additions and 0 deletions

View File

@@ -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 }}"

View File

@@ -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 }}"