Skip to content
Discussion options

You must be logged in to vote

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:

  1. 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…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@wolsson7
Comment options

Answer selected by wolsson7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Actions Build, test, and automate your deployment pipeline with world-class CI/CD Question Ask and answer questions about GitHub features and usage
2 participants