Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(check-merge-safety): only set merge safety status to failure if it was previous success #460

Merged
merged 4 commits into from
Oct 17, 2023

Conversation

aschwenn
Copy link
Contributor

📝 Description

GitHub has a limit of 1000 statuses that can be set per commit. Since check-merge-safety runs so many times on large-scale repos, it lately has ended up accidentally hitting this limit, which fails the rest of the job so it doesn't finish setting statuses. Here, I check for an existing failure status before attempting to set a failure status. We could also perform the same check for success statuses, but that's not really a big problem right now; the issue is stale branches that are having the failure status set a thousand times.

🔗 Related Issues

@aschwenn aschwenn requested a review from a team as a code owner October 16, 2023 23:30
Comment on lines +50 to +57
const {
head: {
ref,
user: { login: username }
}
} = pullRequest;
const truncatedRef = ref.length > maxBranchNameLength ? `${ref.substring(0, maxBranchNameLength)}...` : ref;
const truncatedBranchName = `${username}:${truncatedRef}`;
Copy link
Contributor

@danadajian danadajian Oct 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is now duplicate code, could we extract a method?

@aschwenn aschwenn merged commit 8cdeb1d into main Oct 17, 2023
24 checks passed
@aschwenn aschwenn deleted the only-set-merge-safety-status-failure-if-changed branch October 17, 2023 19:51
@danadajian
Copy link
Contributor

🎉 This PR is included in version 1.45.1 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants