From d0b3dfd4237b32d7954f6cdab5f20a926144e741 Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Tue, 21 Feb 2023 18:20:13 +0100 Subject: [PATCH] [BRANDING] DEFAULT_ACTIONS_URL = https://codeberg.org (cherry picked from commit 52b364ddbd9ac82b9e6f9c1767db2d6b36165011) (cherry picked from commit 99887cd5673f6da49664b590ad60c83fdbe25a4a) (cherry picked from commit cd5788782aa5c2ee8baecd57ca1e7882f0854453) Conflicts: docs/content/doc/advanced/config-cheat-sheet.en-us.md (cherry picked from commit f33e7c8f5aacb36343c2ce34aea0eaec83767840) (cherry picked from commit dc892c2e807b1b43fef708563ffe267ffcb9b248) (cherry picked from commit 60f53af40c102ed34bdf10e4131b0d0a3b77c1ce) (cherry picked from commit dbf7401fe81d76a775c4ee7261afb9eb61d92c45) (cherry picked from commit d89cf82796e9c8d26e9a7db50f8b639e74bdb19a) --- custom/conf/app.example.ini | 4 ++-- modules/setting/actions.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index 2438135bc..d7c8bea03 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -2587,8 +2587,8 @@ ROUTER = console ; [actions] ;; Enable/Disable actions capabilities ;ENABLED = false -;; Default address to get action plugins, e.g. the default value means downloading from "https://gitea.com/actions/checkout" for "uses: actions/checkout@v3" -;DEFAULT_ACTIONS_URL = https://gitea.com +;; Default address to get action plugins, e.g. the default value means downloading from "https://codeberg.org/actions/checkout" for "uses: actions/checkout@v3" +;DEFAULT_ACTIONS_URL = https://codeberg.org ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/modules/setting/actions.go b/modules/setting/actions.go index b11500dab..a4273c675 100644 --- a/modules/setting/actions.go +++ b/modules/setting/actions.go @@ -15,7 +15,7 @@ var ( DefaultActionsURL string `ini:"DEFAULT_ACTIONS_URL"` }{ Enabled: false, - DefaultActionsURL: "https://gitea.com", + DefaultActionsURL: "https://codeberg.org", } )