diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5e7a84a3e..d39078ffa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,14 +9,15 @@ on: types: - opened - reopened - - synchronize - repository_dispatch: - types: [run-test-harness] + - synchronize schedule: - cron: '0 6 * * *' # Execute every day at noon workflow_dispatch: inputs: + distinct_id: + description: 'distinct id for the triggered run from OSS' + required: false runDescription: description: 'Description of run' required: false @@ -87,6 +88,10 @@ jobs: steps: - uses: actions/checkout@v4 + #https://github.com/Codex-/return-dispatch + - name: echo distinct ID ${{ github.event.inputs.distinct_id }} + run: echo ${{ github.event.inputs.distinct_id }} + - name: Configure Build id: configure-build uses: actions/github-script@v7.0.1