1
0
mirror of https://github.com/Luzifer/repo-template.git synced 2024-09-20 01:22:58 +00:00

Fix: Jenkins targets might have dependencies

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-04-17 11:31:24 +02:00
parent 3da9b1e27a
commit 038eefb8fc
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

View File

@ -1,10 +1,10 @@
package main
import (
"bufio"
"context"
"strings"
"github.com/Luzifer/go_helpers/str"
"github.com/google/go-github/github"
log "github.com/sirupsen/logrus"
)
@ -55,8 +55,11 @@ func filterMakeJenkins(repo *github.Repository) bool {
return false
}
if str.StringInSlice("jenkins:", strings.Split(*fc.Content, "\n")) {
return true
scanner := bufio.NewScanner(strings.NewReader(*fc.Content))
for scanner.Scan() {
if strings.HasPrefix(scanner.Text(), "jenkins:") {
return true
}
}
return false