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:
Add API to support link package to repository and unlink it (go-gitea#33481)
[skip ci] Updated translations via Crowdin
Update JS and PY dependencies (go-gitea#33587)
[chore] add git mailmap for proper attribution of authorship (go-gitea#33612)
Move commits signature and verify functions to service layers (go-gitea#33605)
add spacing between sign in button's icon and text (go-gitea#33609)
enable literal string for code search (go-gitea#33590)
[skip ci] Updated translations via Crowdin
Artifacts download api for artifact actions v4 (go-gitea#33510)
Fix bug when get commit (go-gitea#33602)
Fix mirror bug (go-gitea#33597)
Fix typo in HTML attribute (go-gitea#33599)
Use default Git timeout when checking repo health (go-gitea#33593)
Improve commits list performance to reduce unnecessary database queries (go-gitea#33528)
Performance optimization for pull request files loading comments attachments (go-gitea#33585)
Fix PR's target branch dropdown (go-gitea#33589)
_, err:=db.GetEngine(ctx).Where("id=? AND status = ?", artifactID, ArtifactStatusUploadConfirmed).Cols("status").Update(&ActionArtifact{Status: int64(ArtifactStatusExpired)})
180
+
_, err:=db.GetEngine(ctx).Where("id=? AND status = ?", artifactID, ArtifactStatusUploadConfirmed).Cols("status").Update(&ActionArtifact{Status: ArtifactStatusExpired})
176
181
returnerr
177
182
}
178
183
179
184
// SetArtifactNeedDelete sets an artifact to need-delete, cron job will delete it
_, err:=db.GetEngine(ctx).Where("run_id=? AND artifact_name=? AND status = ?", runID, name, ArtifactStatusUploadConfirmed).Cols("status").Update(&ActionArtifact{Status: int64(ArtifactStatusPendingDeletion)})
186
+
_, err:=db.GetEngine(ctx).Where("run_id=? AND artifact_name=? AND status = ?", runID, name, ArtifactStatusUploadConfirmed).Cols("status").Update(&ActionArtifact{Status: ArtifactStatusPendingDeletion})
0 commit comments