[v8.5.x] CI: Backport grafana-com publishing (#65168)

[v8.5.x] Backport grafana-com publishing

This should complete #56797.
This commit is contained in:
Horst Gutmann
2023-05-12 09:33:12 +03:00
committed by GitHub
parent b06e795c27
commit 8135ff40d6
53 changed files with 5533 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
package stringutil
func Contains(arr []string, s string) bool {
for _, e := range arr {
if e == s {
return true
}
}
return false
}