diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-09-15 14:43:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 06:43:39 +0000 |
commit | e5ec57cd608a81be6e0a6b897b165e9b322ceab4 (patch) | |
tree | d99fd9a4377134cebbcb2edbf4897037acd3bc9f /modules | |
parent | 3cd719a63d3ef8125eff87f4759f2be2c7a1ec92 (diff) | |
download | gitea-e5ec57cd608a81be6e0a6b897b165e9b322ceab4.tar.gz gitea-e5ec57cd608a81be6e0a6b897b165e9b322ceab4.zip |
Actions are no longer experimental, so enable them by default (#27054)
This PR makes the actions enabled by default, so people will find it
easier to enable actions in repository setting.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/setting/actions.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/setting/actions.go b/modules/setting/actions.go index bfc502c0cb..28c84f0149 100644 --- a/modules/setting/actions.go +++ b/modules/setting/actions.go @@ -19,7 +19,7 @@ var ( Enabled bool DefaultActionsURL defaultActionsURL `ini:"DEFAULT_ACTIONS_URL"` }{ - Enabled: false, + Enabled: true, DefaultActionsURL: defaultActionsURLGitHub, } ) |