mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-26 17:41:09 +08:00
[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:
parent
2a8f2c6467
commit
76a2b89d17
6
.github/workflows/check_issues.yml
vendored
6
.github/workflows/check_issues.yml
vendored
@ -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."
|
||||
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");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user