[BRANDING] lookup .forgejo/workflows before .gitea/workflows

(cherry picked from commit ffe51fd72f)
(cherry picked from commit a2b483b67d)
This commit is contained in:
Loïc Dachary 2023-02-22 17:05:16 +01:00
parent cd5788782a
commit 2b7d0bbde2
No known key found for this signature in database
GPG Key ID: 992D23B392F9E4F2
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ import (
)
func ListWorkflows(commit *git.Commit) (git.Entries, error) {
tree, err := commit.SubTree(".gitea/workflows")
tree, err := commit.SubTree(".forgejo/workflows")
if _, ok := err.(git.ErrNotExist); ok {
tree, err = commit.SubTree(".gitea/workflows")
}
if _, ok := err.(git.ErrNotExist); ok {
tree, err = commit.SubTree(".github/workflows")
}