maint(linux): Don't block merge if source verification check fails

If the Linux source verification check fails we don't want to block
merging a PR. It behaves then similar to the web/file-size check.

Related-to: #16004
Build-bot: skip
Test-bot: skip
This commit is contained in:
Eberhard Beilharz 2026-05-26 09:21:50 +02:00
parent 1c405b1c58
commit 5614863246
No known key found for this signature in database
GPG key ID: E9140597606020D3

View file

@ -81,7 +81,9 @@ jobs:
} else if(status.context == 'Ubuntu Packaging') {
summary += addStatus(o, 'build', status.context, status.state);
} else if(status.context == 'Linux source verification') {
summary += addStatus(o, 'build', status.context, status.state);
// Ignore Linux source verification -- we won't block automerge
// for this at this point
summary += addLog(`Skipping ${status.context}`);
} else if(status.context == 'npm pack/publish') {
summary += addStatus(o, 'build', status.context, status.state);
} else if(status.context == 'Keyman Core - ARM64 test') {