diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-12-21 04:12:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 20:12:25 +0000 |
commit | 3d98d99e27dfbe86227b0557d04b5e4ea1c6e946 (patch) | |
tree | 1876471ed89a3261d8416548426329437805ad35 /docs | |
parent | 2c48733afea30a5e25fc1a6b3054f0ae907f990b (diff) | |
download | gitea-3d98d99e27dfbe86227b0557d04b5e4ea1c6e946.tar.gz gitea-3d98d99e27dfbe86227b0557d04b5e4ea1c6e946.zip |
Update actions document about comparsion as Github Actions (#28560)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/usage/actions/comparison.en-us.md | 8 | ||||
-rw-r--r-- | docs/content/usage/actions/comparison.zh-cn.md | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/docs/content/usage/actions/comparison.en-us.md b/docs/content/usage/actions/comparison.en-us.md index be40657bed..4d725f7a7e 100644 --- a/docs/content/usage/actions/comparison.en-us.md +++ b/docs/content/usage/actions/comparison.en-us.md @@ -29,6 +29,10 @@ Like `uses: https://github.com/actions/checkout@v3` or `uses: http://your_gitea. Gitea Actions supports writing actions in Go. See [Creating Go Actions](https://blog.gitea.com/creating-go-actions/). +### Support the non-standard syntax @yearly, @monthly, @weekly, @daily, @hourly on schedule + +Github Actions doesn't support that. https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule + ## Unsupported workflows syntax ### `concurrency` @@ -110,6 +114,10 @@ It's ignored by Gitea Actions now. Pre and Post steps don't have their own section in the job log user interface. +### Services steps + +Services steps don't have their own section in the job log user interface. + ## Different behavior ### Downloading actions diff --git a/docs/content/usage/actions/comparison.zh-cn.md b/docs/content/usage/actions/comparison.zh-cn.md index 1ef7d3ca98..da3abfe01e 100644 --- a/docs/content/usage/actions/comparison.zh-cn.md +++ b/docs/content/usage/actions/comparison.zh-cn.md @@ -29,6 +29,10 @@ Gitea Actions支持通过URL绝对路径定义actions,这意味着您可以使 Gitea Actions支持使用Go编写Actions。 请参阅[创建Go Actions](https://blog.gitea.com/creating-go-actions/)。 +### 支持非标准的调度语法 @yearly, @monthly, @weekly, @daily, @hourly + +Github Actions 不支持这些语法,详见: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule + ## 不支持的工作流语法 ### `concurrency` @@ -116,6 +120,10 @@ Gitea Actions目前不支持此功能。 预处理和后处理步骤在Job日志用户界面中没有自己的用户界面。 +### 服务步骤 + +服务步骤在Job日志用户界面中没有自己的用户界面。 + ## 不一样的行为 ### 下载Actions |