From ae82ba90a4fecb17598fe5f0f278f0a81e0b08e7 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Tue, 6 Feb 2024 08:30:08 +0100 Subject: [PATCH] Show inputs in names of workflow runs This way it is easier to see what each run was for. --- .github/workflows/image_build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/image_build.yml b/.github/workflows/image_build.yml index 757429c..29c42a8 100644 --- a/.github/workflows/image_build.yml +++ b/.github/workflows/image_build.yml @@ -22,6 +22,9 @@ on: env: IMAGE_NAME: candlepin-unofficial +run-name: > + ${{ format('Image build (ref: {0}, push: {1}, update-latest: {2})', inputs.candlepin-ref, inputs.push-image && 'true' || 'false', inputs.update-latest && 'true' || 'false') }} + jobs: image_build: name: "image_build"