diff --git a/.github/workflows/csharp.yml b/.github/workflows/csharp.yml index 7a33f165a9..a410183af4 100644 --- a/.github/workflows/csharp.yml +++ b/.github/workflows/csharp.yml @@ -34,9 +34,8 @@ on: inputs: full-matrix: description: "Run the full engine, host, and language version matrix" - required: false type: boolean - default: "false" + default: false name: required: false type: string @@ -53,7 +52,7 @@ concurrency: run-name: # Set custom name if job is started manually and name is given - ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1}', github.ref_name, github.sha) || inputs.name) || '' }} + ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1} {2}', github.ref_name, github.sha, toJson(inputs)) || inputs.name) || '' }} env: CARGO_TERM_COLOR: always diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9ee6665a3a..94debd0b6d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -34,9 +34,8 @@ on: inputs: full-matrix: description: "Run the full engine, host, and language version matrix" - required: false type: boolean - default: "false" + default: false name: required: false type: string diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 3bf96115bb..b1700ad9a7 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -34,9 +34,8 @@ on: inputs: full-matrix: description: "Run the full engine, host, and language version matrix" - required: false type: boolean - default: "false" + default: false name: required: false type: string @@ -50,7 +49,7 @@ concurrency: run-name: # Set custom name if job is started manually and name is given - ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1}', github.ref_name, github.sha) || inputs.name) || '' }} + ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1} {2}', github.ref_name, github.sha, toJson(inputs)) || inputs.name) || '' }} jobs: get-matrices: diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 0aec690d01..b895c52771 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -36,9 +36,8 @@ on: inputs: full-matrix: description: "Run the full engine, host, and language version matrix" - required: false type: boolean - default: "false" + default: false name: required: false type: string @@ -55,7 +54,7 @@ env: run-name: # Set custom name if job is started manually and name is given - ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1}', github.ref_name, github.sha) || inputs.name) || '' }} + ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1} {2}', github.ref_name, github.sha, toJson(inputs)) || inputs.name) || '' }} jobs: get-matrices: diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index bbc338c524..37fe40633f 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -38,9 +38,8 @@ on: inputs: full-matrix: description: "Run the full engine, host, and language version matrix" - required: false type: boolean - default: "false" + default: false name: required: false type: string @@ -59,7 +58,7 @@ permissions: run-name: # Set custom name if job is started manually and name is given - ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1}', github.ref_name, github.sha) || inputs.name) || '' }} + ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1} {2}', github.ref_name, github.sha, toJson(inputs)) || inputs.name) || '' }} jobs: get-matrices: diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8535d989cf..da173c0301 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -28,9 +28,8 @@ on: inputs: full-matrix: description: "Run the full engine and host matrix" - required: false type: boolean - default: "false" + default: false name: required: false type: string @@ -47,7 +46,7 @@ env: run-name: # Set custom name if job is started manually and name is given - ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1}', github.ref_name, github.sha) || inputs.name) || '' }} + ${{ github.event_name == 'workflow_dispatch' && (inputs.name == '' && format('{0} @ {1} {2}', github.ref_name, github.sha, toJson(inputs)) || inputs.name) || '' }} jobs: get-matrices: