In GitHub actions, I have a workflow that is used very frequently. It gets executed almost every other minute. While most of the jobs complete successfully, some of them fail.
The end user notifies me of the time that the job failed, so I do know the time the failure occurred.
However, to find out why they failed, I need to go to the specific job. To go to the specific job via the UI, I need to hit next page (several times) until I am close to the time frame. Once I am near the timeframe, I can see the job that failed. As you can imagine, this procedure is quite time consuming.
Each job, has a unique name. Is there anyway I can search for that name (instead of the job id) in GitHub actions ?
Right now the process is manual, I am hoping to simplify it once I obtain a solution to perform this task programatically.