docs(featuredetection): add godoc for min GHES version for advanced issue search

Signed-off-by: Babak K. Shandiz <babakks@github.com>
This commit is contained in:
Babak K. Shandiz 2025-09-02 12:09:38 +01:00
parent 7b4ace9f54
commit d56a902a07
No known key found for this signature in database
GPG key ID: 9472CAEFF56C742E

View file

@ -269,6 +269,12 @@ func (d *detector) ProjectsV1() gh.ProjectsV1Support {
}
const (
// enterpriseAdvancedIssueSearchSupport is the minimum version of GHES that
// supports advanced issue search and gh should use it.
//
// Note that advanced issue search is also available on GHES 3.17, but it's
// at the preview stage and is not as mature as it is on github.com or later
// GHES version.
enterpriseAdvancedIssueSearchSupport = "3.18.0"
)