mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
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:
parent
1c405b1c58
commit
5614863246
1 changed files with 3 additions and 1 deletions
4
.github/workflows/pr-build-status.yml
vendored
4
.github/workflows/pr-build-status.yml
vendored
|
|
@ -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') {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue