You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes the workflows are running into timeout-minutes limit and getting cancelled
even though the the total time for all steps didn't reach the timeout limit.
For example, the following workflow run was cancelled because it hit the timeout-minutes: 8 limit.
However, the total time for all of the steps was only around ~2minutes.
Note: I'm using Actions Runner Controller for my workflow. I noticed that the timer for the job/run starts
immediately before the steps start running (sometimes it takes a few minutes for the first step to start).
Question
I'm suspecting that, the timeout-minutes is using the initial queue start time for the job (maybe?) instead
of the time that passed from the first step.
How can I make the timeout-minutes to use the total time for the steps instead of the job queue start?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Problem
Sometimes the workflows are running into
timeout-minutes
limit and getting cancelledeven though the the total time for all steps didn't reach the timeout limit.
For example, the following workflow run was cancelled because it hit the
timeout-minutes: 8
limit.However, the total time for all of the steps was only around ~
2
minutes.Note: I'm using Actions Runner Controller for my workflow. I noticed that the timer for the job/run starts
immediately before the steps start running (sometimes it takes a few minutes for the first step to start).
Question
I'm suspecting that, the
timeout-minutes
is using the initial queue start time for the job (maybe?) insteadof the time that passed from the first step.
How can I make the
timeout-minutes
to use the total time for the steps instead of the job queue start?Beta Was this translation helpful? Give feedback.
All reactions