diff options
author | Denys Konovalov <kontakt@denyskon.de> | 2024-03-14 04:18:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 03:18:04 +0000 |
commit | 7a90e5954f8515329f20ff0e391130e1ee7b8864 (patch) | |
tree | d9c4790ebeb8261c13cf9423a1570ff41e4fc262 /docs/content/administration | |
parent | e79a807a8461a73bd66146d816f635b66e198c89 (diff) | |
download | gitea-7a90e5954f8515329f20ff0e391130e1ee7b8864.tar.gz gitea-7a90e5954f8515329f20ff0e391130e1ee7b8864.zip |
add skip ci support for pull request title (#29774)
Extends #28075 to support [skip ci] inside PR titles.
Close #29265
Diffstat (limited to 'docs/content/administration')
-rw-r--r-- | docs/content/administration/config-cheat-sheet.en-us.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/administration/config-cheat-sheet.en-us.md b/docs/content/administration/config-cheat-sheet.en-us.md index 43ec470ad0..04923acdcb 100644 --- a/docs/content/administration/config-cheat-sheet.en-us.md +++ b/docs/content/administration/config-cheat-sheet.en-us.md @@ -1406,7 +1406,7 @@ PROXY_HOSTS = *.github.com - `ZOMBIE_TASK_TIMEOUT`: **10m**: Timeout to stop the task which have running status, but haven't been updated for a long time - `ENDLESS_TASK_TIMEOUT`: **3h**: Timeout to stop the tasks which have running status and continuous updates, but don't end for a long time - `ABANDONED_JOB_TIMEOUT`: **24h**: Timeout to cancel the jobs which have waiting status, but haven't been picked by a runner for a long time -- `SKIP_WORKFLOW_STRINGS`: **[skip ci],[ci skip],[no ci],[skip actions],[actions skip]**: Strings committers can place inside a commit message to skip executing the corresponding actions workflow +- `SKIP_WORKFLOW_STRINGS`: **[skip ci],[ci skip],[no ci],[skip actions],[actions skip]**: Strings committers can place inside a commit message or PR title to skip executing the corresponding actions workflow `DEFAULT_ACTIONS_URL` indicates where the Gitea Actions runners should find the actions with relative path. For example, `uses: actions/checkout@v4` means `https://github.com/actions/checkout@v4` since the value of `DEFAULT_ACTIONS_URL` is `github`. |