From f87c68ea682de3b0545b206557a17affcdf2be3a Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Tue, 3 Feb 2026 00:14:39 +0100 Subject: Add workflow to clean old GitHub Actions caches Adds a scheduled GitHub Actions workflow (.github/workflows/cleanup_caches.yml) that runs weekly (and via workflow_dispatch) to delete Actions caches not accessed in the last 3 days. The job uses the gh CLI with the repository token and actions: write permission to list caches, filter by last_accessed_at against a 3-day cutoff, and delete matching cache IDs. --- sub/subController.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'sub') diff --git a/sub/subController.go b/sub/subController.go index 7653a4e1..53b5580b 100644 --- a/sub/subController.go +++ b/sub/subController.go @@ -3,8 +3,8 @@ package sub import ( "encoding/base64" "fmt" - "strings" "strconv" + "strings" "github.com/mhsanaei/3x-ui/v2/config" @@ -64,8 +64,8 @@ func NewSUBController( subEncrypt: encrypt, updateInterval: update, - subService: sub, - subJsonService: NewSubJsonService(jsonFragment, jsonNoise, jsonMux, jsonRules, sub), + subService: sub, + subJsonService: NewSubJsonService(jsonFragment, jsonNoise, jsonMux, jsonRules, sub), } a.initRouter(g) return a @@ -170,13 +170,13 @@ func (a *SUBController) subJsons(c *gin.Context) { // ApplyCommonHeaders sets common HTTP headers for subscription responses including user info, update interval, and profile title. func (a *SUBController) ApplyCommonHeaders( - c *gin.Context, - header, - updateInterval, - profileTitle string, + c *gin.Context, + header, + updateInterval, + profileTitle string, profileSupportUrl string, - profileUrl string, - profileAnnounce string, + profileUrl string, + profileAnnounce string, profileEnableRouting bool, profileRoutingRules string, ) { -- cgit v1.2.3