4

I am currently using the GitHub actions feature for my project CI-CD, so the pipeline listens to push on the main branch, and when I do no action gets triggered on the actions tab, also I try to run that pipeline manually since I have workflow_dispatch and it says

Workflow run was successfully requested. 

I don't understand is there a queuing system for actions or are there some priorities? and also I would like to know when and whether the action is going to start?

Update:

The github action started after few minutes.

Affes Salem
  • 1,303
  • 10
  • 26

1 Answers1

2

It must depend on the Azure server load and availability.

For instance, scheduled actions come with the caveat:

Note: The schedule event can be delayed during periods of high loads of GitHub Actions workflow runs.
High load times include the start of every hour.
To decrease the chance of delay, schedule your workflow to run at a different time of the hour.

In your case, you were scheduling the job manually, but it had to wait for other jobs to complete first.

Plus, in your case, there was a GitHub Actions incident report earlier today, which could have has a side-effect regarding the scheduling your your job.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250