Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GitHub Actions: How to view inputs for workflow_dispatch?

My idea here is to write my inputs from workflow_dispatch on each pipeline run. ![enter image description here.

For example, in Bitbucket pipelines input parameters shown after custom - enter image description here

Is there a way to do something similar for GitHub?

like image 372
voralexan Avatar asked Sep 13 '25 09:09

voralexan


1 Answers

You can use the run-name parameter to change the name of the run in the actions list:

Example of run-name

run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }}

Be aware that, if you are using Github Enterprise server, this parameter was introduced in version 3.8.

like image 169
Lee Netherton Avatar answered Sep 17 '25 10:09

Lee Netherton