From 92076b2278202ff94e467941498df10a2ebda56f Mon Sep 17 00:00:00 2001 From: Raymond Kim Date: Fri, 21 Jun 2024 08:00:40 -0400 Subject: [PATCH] Try adding example workflow names with square brackets --- .github/workflows/_produce-data.yaml | 17 +++++++++++------ .github/workflows/build-and-unit-tests.yaml | 2 +- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/_produce-data.yaml b/.github/workflows/_produce-data.yaml index 18fce92..76babf0 100644 --- a/.github/workflows/_produce-data.yaml +++ b/.github/workflows/_produce-data.yaml @@ -13,6 +13,11 @@ on: - "Build" - "(post-commit) all - Static checks, linters etc." - "All post-commit workflows" + - "[TG] TG model perf tests" + - "Model perf regressions and output report" + - "Device perf regressions and output report" + - "[T3K] T3000 model perf tests" + - "[TGG] TGG model perf tests" types: - completed @@ -27,20 +32,20 @@ jobs: GH_TOKEN: ${{ github.token }} run: | echo "[Info] Workflow run attempt" - gh api /repos/${{ github.action_repository }}/actions/runs/${{ inputs.test_workflow_run_id }}/attempts/1 - gh api /repos/${{ github.action_repository }}/actions/runs/${{ inputs.test_workflow_run_id }}/attempts/1 > workflow.json + gh api /repos/tt-rkim/gh-workflows-testing/actions/runs/${{ inputs.test_workflow_run_id }}/attempts/1 + gh api /repos/tt-rkim/gh-workflows-testing/actions/runs/${{ inputs.test_workflow_run_id }}/attempts/1 > workflow.json echo "[Info] Workflow run attempt jobs" - gh api --paginate /repos/${{ github.action_repository }}/actions/runs/${{ inputs.test_workflow_run_id }}/attempts/1/jobs - gh api --paginate /repos/${{ github.action_repository }}/actions/runs/${{ inputs.test_workflow_run_id }}/attempts/1/jobs > workflow_jobs.json + gh api --paginate /repos/tt-rkim/gh-workflows-testing/actions/runs/${{ inputs.test_workflow_run_id }}/attempts/1/jobs + gh api --paginate /repos/tt-rkim/gh-workflows-testing/actions/runs/${{ inputs.test_workflow_run_id }}/attempts/1/jobs > workflow_jobs.json - name: Output auxiliary values (workflow_run completed) if: ${{ github.event_name == 'workflow_run' }} env: GH_TOKEN: ${{ github.token }} run: | echo "[Info] Workflow run attempt" - gh api /repos/${{ github.action_repository }}/actions/runs/${{ github.event.workflow_run.id }}/attempts/${{ github.event.workflow_run.run_attempt }} > workflow.json + gh api /repos/tt-rkim/gh-workflows-testing/actions/runs/${{ github.event.workflow_run.id }}/attempts/${{ github.event.workflow_run.run_attempt }} > workflow.json echo "[Info] Workflow run attempt jobs" - gh api --paginate /repos/${{ github.action_repository }}/actions/runs/${{ github.event.workflow_run.id }}/attempts/${{ github.event.workflow_run.run_attempt }}/jobs > workflow_jobs.json + gh api --paginate /repos/tt-rkim/gh-workflows-testing/actions/runs/${{ github.event.workflow_run.id }}/attempts/${{ github.event.workflow_run.run_attempt }}/jobs > workflow_jobs.json - uses: actions/upload-artifact@v4 with: path: | diff --git a/.github/workflows/build-and-unit-tests.yaml b/.github/workflows/build-and-unit-tests.yaml index df7e24e..b071a2f 100644 --- a/.github/workflows/build-and-unit-tests.yaml +++ b/.github/workflows/build-and-unit-tests.yaml @@ -1,4 +1,4 @@ -name: "(post-commit) all - Static checks, linters etc." +name: "[T3K] T3000 model perf tests" on: workflow_call: