From 22b7c91d1342dc6d9fdb30bb194922473f5cf9d7 Mon Sep 17 00:00:00 2001 From: Sven <25549100+bleuthoot-sven@users.noreply.github.com> Date: Thu, 23 Feb 2023 17:32:02 +0100 Subject: [PATCH 1/2] Avoid Hugo from adding quote to actions url Hugo added a " to the url, I put it in a url block to avoid this --- docs/content/doc/advanced/config-cheat-sheet.en-us.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/doc/advanced/config-cheat-sheet.en-us.md b/docs/content/doc/advanced/config-cheat-sheet.en-us.md index 36e9919bc7097..5e31733d35fb5 100644 --- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md +++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md @@ -1336,7 +1336,7 @@ PROXY_HOSTS = *.github.com ## Actions (`actions`) - `ENABLED`: **false**: Enable/Disable actions capabilities -- `DEFAULT_ACTIONS_URL`: **https://gitea.com**: 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://gitea.com/actions/checkout](https://gitea.com/actions/checkout)" for "uses: actions/checkout@v3" `DEFAULT_ACTIONS_URL` indicates where should we find the relative path action plugin. i.e. when use an action in a workflow file like From 4ca920bceb74a3110985b9732e5c99fe7961217a Mon Sep 17 00:00:00 2001 From: Sven <25549100+bleuthoot-sven@users.noreply.github.com> Date: Thu, 23 Feb 2023 18:07:24 +0100 Subject: [PATCH 2/2] Update docs/content/doc/advanced/config-cheat-sheet.en-us.md Co-authored-by: John Olheiser --- docs/content/doc/advanced/config-cheat-sheet.en-us.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/doc/advanced/config-cheat-sheet.en-us.md b/docs/content/doc/advanced/config-cheat-sheet.en-us.md index 5e31733d35fb5..462556c9b6cb4 100644 --- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md +++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md @@ -1336,7 +1336,7 @@ PROXY_HOSTS = *.github.com ## Actions (`actions`) - `ENABLED`: **false**: Enable/Disable actions capabilities -- `DEFAULT_ACTIONS_URL`: **https://gitea.com**: Default address to get action plugins, e.g. the default value means downloading from "[https://gitea.com/actions/checkout](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 "" for "uses: actions/checkout@v3" `DEFAULT_ACTIONS_URL` indicates where should we find the relative path action plugin. i.e. when use an action in a workflow file like