abeizn commented on issue #5743:
URL: 
https://github.com/apache/incubator-devlake/issues/5743#issuecomment-1772796326

   And I also have some conjectures. You can also help me see if this is 
possible.
   
   For GitHub Actions, the job name can be either the name in the left-hand 
side jobs list or the name used in the actual running job. It depends on how 
you define the job in your workflow file.
   
   When you use job_id: or jobs.<job_id>.name: to define a job in the workflow 
file, that name will be displayed in the left-hand side jobs list.
   
   Example:
   
   jobs:
      build:
        name: My Build Job
   In the example above, My Build Job will be displayed as the name in the 
left-hand side jobs list.
   
   When you use name: to define a step or action within a job, that name will 
be displayed in the actual running job.
   
   Example:
   
   jobs:
      build:
        steps:
          - name: My Build Step
            run: echo "Building..."
   In the example above, My Build Step will be displayed as the name of a step 
in the actual running job.
   
   The job names can be different for different repositories because each 
repository has its own workflow file, and you can customize the job names 
according to your requirements.  
   
   Finally, attach the workflow settings of devlake: 
https://github.com/apache/incubator-devlake/blob/main/.github/workflows/build.yml


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to