[bot] automatically handle "configure: error: 'autoconf-archive' is missing" (#37083)

Automatically handle issues like
https://github.com/microsoft/vcpkg/issues/36171 or
https://github.com/microsoft/vcpkg/issues/37013
This commit is contained in:
autoantwort 2024-03-05 11:07:49 +01:00 committed by GitHub
parent 2a8f2c6467
commit 76a2b89d17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,3 +70,9 @@ jobs:
let body = "The build failed due to an internal compiler error. Please update your compiler or revert to an old version." let body = "The build failed due to an internal compiler error. Please update your compiler or revert to an old version."
return await commentLabelClose(body, "category:question"); return await commentLabelClose(body, "category:question");
} }
// configure: error: 'autoconf-archive' is missing like #37013
if (issue.data.body.indexOf("configure: error: 'autoconf-archive' is missing") !== -1){
let body = "Please install `autoconf-archive` via `brew install autoconf-archive` (macos) or `sudo apt-get install autoconf-archive` (linux)"
return await commentLabelClose(body, "category:question");
}