You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* giteaofficial/main:
Fix the description about the default setting for action in quick start document (go-gitea#28160)
Do not display search box when there's no packages yet (go-gitea#28146)
Add guide page to actions when there's no workflows (go-gitea#28145)
Fix no ActionTaskOutput table waring (go-gitea#28149)
Fix empty action run title (go-gitea#28113)
Use "is-loading" to avoid duplicate form submit for code comment (go-gitea#28143)
Fix typo in `packages.cleanup.success` (go-gitea#28133)
Add edit option for README.md (go-gitea#28071)
Remove autofocus in search box (go-gitea#28033)
Add missing `packages.cleanup.success` (go-gitea#28129)
Update docs for docusaurus v3 (go-gitea#28125)
Copy file name to clipboardExpand all lines: docs/content/administration/config-cheat-sheet.en-us.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -343,7 +343,7 @@ The following configuration set `Content-Type: application/vnd.android.package-a
343
343
-`SSH_AUTHORIZED_PRINCIPALS_ALLOW`: **off** or **username, email**: \[off, username, email, anything\]: Specify the principals values that users are allowed to use as principal. When set to `anything` no checks are done on the principal string. When set to `off` authorized principal are not allowed to be set.
344
344
-`SSH_CREATE_AUTHORIZED_PRINCIPALS_FILE`: **false/true**: Gitea will create a authorized_principals file by default when it is not using the internal ssh server and `SSH_AUTHORIZED_PRINCIPALS_ALLOW` is not `off`.
345
345
-`SSH_AUTHORIZED_PRINCIPALS_BACKUP`: **false/true**: Enable SSH Authorized Principals Backup when rewriting all keys, default is true if `SSH_AUTHORIZED_PRINCIPALS_ALLOW` is not `off`.
346
-
-`SSH_AUTHORIZED_KEYS_COMMAND_TEMPLATE`: **{{.AppPath}} --config={{.CustomConf}} serv key-{{.Key.ID}}**: Set the template for the command to passed on authorized keys. Possible keys are: AppPath, AppWorkPath, CustomConf, CustomPath, Key - where Key is a `models/asymkey.PublicKey` and the others are strings which are shellquoted.
346
+
-`SSH_AUTHORIZED_KEYS_COMMAND_TEMPLATE`: **`{{.AppPath}} --config={{.CustomConf}} serv key-{{.Key.ID}}`**: Set the template for the command to passed on authorized keys. Possible keys are: AppPath, AppWorkPath, CustomConf, CustomPath, Key - where Key is a `models/asymkey.PublicKey` and the others are strings which are shellquoted.
347
347
-`SSH_SERVER_CIPHERS`: **[email protected], aes128-ctr, aes192-ctr, aes256-ctr, [email protected], [email protected]**: For the built-in SSH server, choose the ciphers to support for SSH connections, for system SSH this setting has no effect.
348
348
-`SSH_SERVER_KEY_EXCHANGES`: **curve25519-sha256, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group14-sha256, diffie-hellman-group14-sha1**: For the built-in SSH server, choose the key exchange algorithms to support for SSH connections, for system SSH this setting has no effect.
349
349
-`SSH_SERVER_MACS`: **[email protected], hmac-sha2-256, hmac-sha1**: For the built-in SSH server, choose the MACs to support for SSH connections, for system SSH this setting has no effect
@@ -1406,7 +1406,7 @@ Please note that using `self` is not recommended for most cases, as it could mak
1406
1406
Additionally, it requires you to mirror all the actions you need to your Gitea instance, which may not be worth it.
1407
1407
Therefore, please use `self` only if you understand what you are doing.
1408
1408
1409
-
In earlier versions (<= 1.19), `DEFAULT_ACTIONS_URL` could be set to any custom URLs like `https://gitea.com` or `http://your-git-server,https://gitea.com`, and the default value was `https://gitea.com`.
1409
+
In earlier versions (`<= 1.19`), `DEFAULT_ACTIONS_URL` could be set to any custom URLs like `https://gitea.com` or `http://your-git-server,https://gitea.com`, and the default value was `https://gitea.com`.
1410
1410
However, later updates removed those options, and now the only options are `github` and `self`, with the default value being `github`.
1411
1411
However, if you want to use actions from other git server, you can use a complete URL in `uses` field, it's supported by Gitea (but not GitHub).
1412
1412
Like `uses: https://gitea.com/actions/checkout@v3` or `uses: http://your-git-server/actions/checkout@v3`.
Copy file name to clipboardExpand all lines: docs/content/usage/actions/quickstart.en-us.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ First of all, you need a Gitea instance.
23
23
You can follow the [documentation](installation/from-package.md) to set up a new instance or upgrade your existing one.
24
24
It doesn't matter how you install or run Gitea, as long as its version is 1.19.0 or higher.
25
25
26
-
Actions are disabled by default, so you need to add the following to the configuration file to enable it:
26
+
Since 1.21.0, Actions are enabled by default. If you are using versions before 1.21.0, you need to add the following to the configuration file to enable it:
packages.cleanup.success = Cleaned up expired data successfully
2886
2887
packages.owner = Owner
2887
2888
packages.creator = Creator
2888
2889
packages.name = Name
@@ -3528,7 +3529,11 @@ runs.status = Status
3528
3529
runs.actors_no_select = All actors
3529
3530
runs.status_no_select = All status
3530
3531
runs.no_results = No results matched.
3532
+
runs.no_workflows = There are no workflows yet.
3533
+
runs.no_workflows.quick_start = Don't know how to start with Gitea Action? See <a target="_blank" rel="noopener noreferrer" href="%s">the quick start guide</a>.
3534
+
runs.no_workflows.documentation = For more information on the Gitea Action, see <a target="_blank" rel="noopener noreferrer" href="%s">the documentation</a>.
0 commit comments