From d7469d3d588c106982157099e0aefe569530a5e7 Mon Sep 17 00:00:00 2001 From: Nicolas FAUGEROUX Date: Mon, 1 Apr 2024 11:59:25 +0200 Subject: [PATCH] fix(vars): use valid var of gitea_actions_default_actions_url --- README.md | 2 +- defaults/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 13d1cf2..6fec0e9 100644 --- a/README.md +++ b/README.md @@ -348,7 +348,7 @@ This is because the Forgejo project maintains both `stable` and `old stable` rel | variable name | default value | description | | ------------- | ------------- | ----------- | | `gitea_actions_enabled` | `false` | Enable/Disable actions capabilities globaly. You may want to add `repo.actions` to `gitea_default_repo_units` to enable actions on all new repositories | -| `gitea_actions_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` | +| `gitea_actions_default_actions_url` | `github` | Default address to get action plugins, e.g. the default value means downloading from `https://github.com/actions/checkout` for `uses: actions/checkout@v3` | | `gitea_actions_extra` | | you can use this variable to pass additional config parameters in the `[actions]` section of the config. | ### Other ([other](https://docs.gitea.com/administration/config-cheat-sheet#other-other)) diff --git a/defaults/main.yml b/defaults/main.yml index 6dab209..41e4c6c 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -257,7 +257,7 @@ gitea_lfs_extra: '' # Actions (actions) # -> https://docs.gitea.io/en-us/config-cheat-sheet/#actions-actions gitea_actions_enabled: false -gitea_actions_default_actions_url: "https://gitea.com" +gitea_actions_default_actions_url: github gitea_actions_extra: '' # Other (other)