We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edd0213 commit 0c8d0d5Copy full SHA for 0c8d0d5
.github/workflows/check_issues.yml
@@ -44,6 +44,13 @@ jobs:
44
return await commentLabelClose(body, "category:question");
45
}
46
47
+ // https://gitlab.freedesktop.org maintenance
48
+ reg = /error: https:\/\/gitlab\.freedesktop\.org\/.*: failed: status code 503/;
49
+ if (reg.test(issue_body)){
50
+ let body = "gitlab.freedesktop.org is undergoing maintenance until 2025-03-22. Tracking issue https://github.com/microsoft/vcpkg/issues/44429"
51
+ return await commentLabelClose(body, "category:question");
52
+ }
53
+
54
regs = []
55
// Issue text is: Copy issue body from .../issue_body.md
56
regs.push( /^Copy issue body from .*issue_body.md$/ );
0 commit comments