1
0
Fork 0
forked from forgejo/forgejo

Add guide page to actions when there's no workflows (#28145) (#28153)

Backport #28145 by @yp05327

Before:

![image](599d40c1-9b8d-4189-9286-c9c36fb780dd)

After:

![image](848a73d1-aaec-478f-93a7-adcc7ee18907)

Co-authored-by: yp05327 <576951401@qq.com>
(cherry picked from commit 9bfee5014b)
This commit is contained in:
Giteabot 2023-11-22 10:29:54 +08:00 committed by Earl Warren
parent 2f8672c4dc
commit c5bb91a9eb
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
4 changed files with 16 additions and 0 deletions

View file

@ -560,6 +560,7 @@ func RepoAssignment(ctx *Context) context.CancelFunc {
ctx.Data["CanWriteCode"] = ctx.Repo.CanWrite(unit_model.TypeCode)
ctx.Data["CanWriteIssues"] = ctx.Repo.CanWrite(unit_model.TypeIssues)
ctx.Data["CanWritePulls"] = ctx.Repo.CanWrite(unit_model.TypePullRequests)
ctx.Data["CanWriteActions"] = ctx.Repo.CanWrite(unit_model.TypeActions)
canSignedUserFork, err := repo_module.CanUserForkRepo(ctx, ctx.Doer, ctx.Repo.Repository)
if err != nil {