You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #1543 we have supported dynamic names for workflows. This is a breaking change since anyone who upgrades will need to also update their workflow files to include the additional inputs run_name:
name: Digger Workflow
on:
workflow_dispatch:
inputs:
id:
description: 'run identifier'
required: false
job:
required: true
run_name:
description: 'the run name'
required: false
furthermore, they will also need to include a run-name argument in their workflow to benifit from this change:
run-name: '${{inputs.run_name}}'
We need to make sure that all the documentation is updated to reflect this and also add a troubleshooting guide for when errors such as this do exist for the unaware:
422 unexpected input of type "project_name"
The text was updated successfully, but these errors were encountered:
In #1543 we have supported dynamic names for workflows. This is a breaking change since anyone who upgrades will need to also update their workflow files to include the additional inputs
run_name
:furthermore, they will also need to include a
run-name
argument in their workflow to benifit from this change:We need to make sure that all the documentation is updated to reflect this and also add a troubleshooting guide for when errors such as this do exist for the unaware:
The text was updated successfully, but these errors were encountered: