mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
Merge pull request #2614 from joshfng/add-default-branch-to-repo-payload
Add default branch to repo payload
This commit is contained in:
commit
364874937e
@ -90,7 +90,7 @@ func checkVersion() {
|
|||||||
{"gopkg.in/ini.v1", ini.Version, "1.8.4"},
|
{"gopkg.in/ini.v1", ini.Version, "1.8.4"},
|
||||||
{"gopkg.in/macaron.v1", macaron.Version, "0.8.0"},
|
{"gopkg.in/macaron.v1", macaron.Version, "0.8.0"},
|
||||||
{"github.com/gogits/git-module", git.Version, "0.2.5"},
|
{"github.com/gogits/git-module", git.Version, "0.2.5"},
|
||||||
{"github.com/gogits/go-gogs-client", gogs.Version, "0.7.2"},
|
{"github.com/gogits/go-gogs-client", gogs.Version, "0.7.3"},
|
||||||
}
|
}
|
||||||
for _, c := range checkers {
|
for _, c := range checkers {
|
||||||
if !version.Compare(c.Version(), c.Expected, ">=") {
|
if !version.Compare(c.Version(), c.Expected, ">=") {
|
||||||
|
@ -415,6 +415,7 @@ func (repo *Repository) ComposePayload() *api.PayloadRepo {
|
|||||||
UserName: repo.MustOwner().Name,
|
UserName: repo.MustOwner().Name,
|
||||||
},
|
},
|
||||||
Private: repo.IsPrivate,
|
Private: repo.IsPrivate,
|
||||||
|
DefaultBranch: repo.DefaultBranch,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user