From 7ae93f70d2db4800df57bf78caa15fa90ae3a864 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Fri, 23 Aug 2024 18:37:46 +0000 Subject: [PATCH] Add check label to github action job name Without this change the tree of jobs shows "health" with a series of 7 "run" jobs nested underneath. Add the check name from the input to the job name. --- .github/workflows/health_base.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/health_base.yaml b/.github/workflows/health_base.yaml index 184f70d7..95037df1 100644 --- a/.github/workflows/health_base.yaml +++ b/.github/workflows/health_base.yaml @@ -77,7 +77,7 @@ on: jobs: health: - name: run + name: run ${{ inputs.check }} health check # These permissions are required for us to create comments on PRs. permissions: pull-requests: write