From 68cd7064a69b37fb7401b55217885c194ed361d6 Mon Sep 17 00:00:00 2001 From: Raul Del Pozo Moreno Date: Fri, 17 May 2024 12:21:05 +0200 Subject: [PATCH] Add ID input to workflows (#229) * Added id input * Changed name to run-name --- .github/workflows/build_single.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_single.yml b/.github/workflows/build_single.yml index 3a2798f5f819d..6eb2b85521c54 100644 --- a/.github/workflows/build_single.yml +++ b/.github/workflows/build_single.yml @@ -1,4 +1,4 @@ -name: Build packages (single) +run-name: Build packages (single) ${{ inputs.id }} # This workflow runs when any of the following occur: # - Run from another worklow of GH API @@ -26,6 +26,11 @@ on: description: "Package architecture" type: string default: amd64 + id: + description: "ID used to identify the workflow uniquely." + type: string + required: false + workflow_dispatch: inputs: revision: @@ -54,6 +59,10 @@ on: - amd64 - x86_64 default: amd64 + id: + description: "ID used to identify the workflow uniquely." + type: string + required: false jobs: call-build-workflow: