actions/starter-workflows

access vars or jobs context in run name or a PUT API for updating run name

rwader-swi opened this issue · 3 comments

Currently the name in workflow run has only access to {{ inputs }} and {{ github }} contexts, which is not very useful as we might want to display additional info which are processed in the job steps.

  • either give access to {{ job }} context. It might solve this as it will update name after the job step is completed (from outputs)
  • or atleast access the {{ vars }} context, that we ultimately update in some job steps
  • If not that then atleast a PUT API endpoint for updating the run's metadata like run-name.

Neither of the above are avaialable 🙂

The users have to go inside every run to check such metadata, because its not displayed in name.

Essentially what differs each run is not just the inputs, but also some processing done from inputs.

For example in my usecase we update our software version for every release run by 1. And we want to display in the run name.

image

Will appreciate if anyone takes look into this feature ASAP!!!! And many people want this to be fixed.