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

(cherry picked from commit ffe51fd72f)
(cherry picked from commit a2b483b67d)
(cherry picked from commit 2b7d0bbde2)
(cherry picked from commit 3027fddbff)
(cherry picked from commit 023f7cc3b2)
(cherry picked from commit 95c3a3aa70)
(cherry picked from commit 1cc0ef5cc5)
(cherry picked from commit 467d082568)
This commit is contained in:
Loïc Dachary 2023-02-22 17:05:16 +01:00
parent 3e40088197
commit 5d8f40e865
No known key found for this signature in database
GPG Key ID: 992D23B392F9E4F2
1 changed files with 4 additions and 1 deletions

View File

@ -30,7 +30,10 @@ func init() {
}
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")
}