You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* giteaofficial/main:
Fix bug of branch/tag selector in the issue sidebar (go-gitea#32744)
Fix lfs migration (go-gitea#32812)
Avoid MacOS keychain dialog in integration tests (go-gitea#32813)
Update actionlint.yaml
Detect whether action view branch was deleted (go-gitea#32764)
Add "n commits" link to contributors in contributors graph page (go-gitea#32799)
Fix "unicode escape" JS error (go-gitea#32806)
use dedicated runners for release artifacts (go-gitea#32811)
Make API "compare" accept commit IDs (go-gitea#32801)
Implement update branch API (go-gitea#32433)
Fix JS error when dropping a file to a editor without dropzone (go-gitea#32804)
chore: use errors.New to replace fmt.Errorf with no parameters (go-gitea#32800)
Copy file name to clipboardExpand all lines: models/actions/run.go
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ type ActionRun struct {
37
37
TriggerUser*user_model.User`xorm:"-"`
38
38
ScheduleIDint64
39
39
Refstring`xorm:"index"`// the commit/tag/… that caused the run
40
+
IsRefDeletedbool`xorm:"-"`
40
41
CommitSHAstring
41
42
IsForkPullRequestbool// If this is triggered by a PR from a forked repository or an untrusted user, we need to check if it is approved and limit permissions when running the workflow.
42
43
NeedApprovalbool// may need approval if it's a fork pull request
0 commit comments