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:
Show lock owner instead of repo owner on LFS setting page (go-gitea#31788)
Move repository visibility to danger zone in the settings area (go-gitea#31126)
[skip ci] Updated translations via Crowdin
Add types to various low-level functions (go-gitea#31781)
Add warning message in merge instructions when `AutodetectManualMerge` was not enabled (go-gitea#31805)
Show latest run when visit /run/latest (go-gitea#31808)
Fix typo for `LOG_COMPRESSION` in ini (go-gitea#31809)
Add label `docs-update-needed` for PRs that modify `app.example.ini` (go-gitea#31810)
Fix `IsObjectExist` with gogit (go-gitea#31790)
Support compression for Actions logs (go-gitea#31761)
Add issue comment when moving issues from one column to another of the project (go-gitea#29311)
[skip ci] Updated translations via Crowdin
Fix RPM resource leak (go-gitea#31794)
Copy file name to clipboardExpand all lines: custom/conf/app.example.ini
+6
Original file line number
Diff line number
Diff line change
@@ -2687,6 +2687,12 @@ LEVEL = Info
2687
2687
;DEFAULT_ACTIONS_URL = github
2688
2688
;; Logs retention time in days. Old logs will be deleted after this period.
2689
2689
;LOG_RETENTION_DAYS = 365
2690
+
;; Log compression type, `none` for no compression, `zstd` for zstd compression.
2691
+
;; Other compression types like `gzip` are NOT supported, since seekable stream is required for log view.
2692
+
;; It's always recommended to use compression when using local disk as log storage if CPU or memory is not a bottleneck.
2693
+
;; And for object storage services like S3, which is billed for requests, it would cause extra 2 times of get requests for each log view.
2694
+
;; But it will save storage space and network bandwidth, so it's still recommended to use compression.
2695
+
;LOG_COMPRESSION = none
2690
2696
;; Default artifact retention time in days. Artifacts could have their own retention periods by setting the `retention-days` option in `actions/upload-artifact` step.
2691
2697
;ARTIFACT_RETENTION_DAYS = 90
2692
2698
;; Timeout to stop the task which have running status, but haven't been updated for a long time
0 commit comments