Instead of trying to shorten the time that our builds take, we order and chain them by complexity, thus gradually reducing the risk.| www.yegor256.com
You can customize how your advanced setup scans the code in your project for vulnerabilities and errors.| GitHub Docs
Developing a complex CI pipeline with github actions is full of gotchas.| www.feldera.com
You can increase development velocity with a merge queue for pull requests in your repository.| GitHub Docs
You can protect important branches by setting branch protection rules, which define whether collaborators can delete or force push to the branch and set requirements for any pushes to the branch, such as passing status checks or a linear commit history.| GitHub Docs
GitHub have enabled their “merge queue” function, which is really exciting! The “it’s not rocket science rule” of software development is a pretty good guiding principle for developing stuff in a team (if CI is fast, more on that later!) - so I’m very glad it gets easier to achieve. Unfortunately, it’s only “easier” but not “easy”. I was able to use the feature for about a half year while it was in private beta, and while using it my team and I learned a few lessons that...| boinkor.net