Is it possible to override max limit [256] jobs per workflow? #69683
Select Topic AreaQuestion BodyI have a unique situation where several (around 300) jobs need to be run for a workflow. This worked up to 256 which I also read in the docs is the limit. But now the number of jobs have exceeded that. Is there any way to override this? A workaround or another way to have the same effect? |
Replies: 1 comment 1 reply
|
As of my Knowledge, GitHub Actions has a hard limit of 256 jobs per workflow run. GitHub defined this limit and couldn't be overridden through configuration. If you've exceeded this limit and need to run more than 256 jobs as part of your workflow, you can consider breaking your workflow into multiple workflows or using a different CI/CD tool. The following are my suggestions to address your issue:
Note: GitHub Actions may introduce changes in the future, so it's advisable to check the GitHub Actions documentation or GitHub's official announcements for any updates on job limits. |
As of my Knowledge, GitHub Actions has a hard limit of 256 jobs per workflow run. GitHub defined this limit and couldn't be overridden through configuration.
If you've exceeded this limit and need to run more than 256 jobs as part of your workflow, you can consider breaking your workflow into multiple workflows or using a different CI/CD tool.
The following are my suggestions to address your issue:
Multiple Workflows: You can divide your tasks into multiple workflows, each with a subset of the jobs you need to run. As per your requirements, these workflows can be triggered sequentially or in parallel. While this doesn't increase the job limit per workflow, it allows you to manage a more…