Home > other >  Description for a workflow in github actions
Description for a workflow in github actions

Time:02-02

Is it possible to have a short comment/description for the job/workflow other than the name of the same.
sometimes it is difficult to identify the purpose or what it does just with the name when we have multiple jobs/workflows

CodePudding user response:

You can put comments in the yaml file or put a readme.md in the workflow folder...

# this is a comment in yaml

There is no description yaml element to store stuff in.

CodePudding user response:

If it is a run workflow, you can just echo something to the console.

  •  Tags:  
  • Related