Renovate Bot
c2b6f71085
chore(deps): update docusaurus monorepo to v3.10.0 ( #374 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/374
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-04-15 15:17:27 +00:00
wxiaoguang
a939f44e37
fix typo
...
# Conflicts:
# docs/administration/reverse-proxies.md
2026-04-14 16:09:39 +08:00
silverwind
59bd79347e
Document REVERSE_PROXY_LOGOUT_REDIRECT setting ( #380 )
...
Add documentation for the new `REVERSE_PROXY_LOGOUT_REDIRECT` setting in the `[security]` section, which allows redirecting users to an external URL or relative path after logout when using reverse proxy authentication.
For Gitea 1.26, ref https://github.com/go-gitea/gitea/pull/36085 .
---
This PR was written with the help of Claude Opus 4.6
Reviewed-on: https://gitea.com/gitea/docs/pulls/380
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-04-10 16:50:43 +00:00
silverwind
5e4cd3b577
Remove obsolete actions concurrency notes ( #377 )
...
`concurrency` is fully supported as of v1.26 via https://github.com/go-gitea/gitea/pull/32751 , so remove the unsupported entry and the different-behavior note.
Closes #340
---
This PR was written with the help of Claude Opus 4.6
Reviewed-on: https://gitea.com/gitea/docs/pulls/377
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-04-08 23:08:20 +00:00
wxiaoguang
57fc84f003
remove "rootful" from title
2026-04-07 17:33:41 +08:00
kmanwar89
9cc5cfd388
Updated various docker compose commands & references ( #361 )
...
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com >
Co-authored-by: kmanwar89 <139654+kmanwar89@noreply.gitea.com >
Co-committed-by: kmanwar89 <139654+kmanwar89@noreply.gitea.com >
2026-04-07 09:24:36 +00:00
TheFox0x7
1568bfa1e9
terraform state registry docs ( #357 )
...
https://github.com/go-gitea/gitea/pull/36710
Reviewed-on: https://gitea.com/gitea/docs/pulls/357
Reviewed-by: Nicolas <173651+bircni@noreply.gitea.com >
Co-authored-by: TheFox0x7 <95654+thefox0x7@noreply.gitea.com >
Co-committed-by: TheFox0x7 <95654+thefox0x7@noreply.gitea.com >
2026-04-06 20:41:42 +00:00
wxiaoguang
efa6607558
GitHub-like theme-based image display ( #372 )
2026-04-03 18:25:12 +00:00
silverwind
25dce1df62
Add pre-defined variables reference to Actions docs ( #369 )
...
Add comprehensive reference tables for pre-defined variables available in Gitea Actions workflows, derived from the Gitea and act_runner source code.
## Context variables (`${{ gitea.<name> }}`)
All context variables with their `github.*` aliases and descriptions, sourced from `services/actions/context.go`.
## Environment variables
- **Standard**: `CI`, `GITEA_ACTIONS`, `GITEA_ACTIONS_RUNNER_VERSION`, `GITHUB_*`, and the 5 `GITEA_*` aliases for workflow file commands (`GITEA_ENV`, `GITEA_OUTPUT`, `GITEA_PATH`, `GITEA_STATE`, `GITEA_STEP_SUMMARY`)
- **Runner**: `RUNNER_OS`, `RUNNER_ARCH`, `RUNNER_TEMP`, `RUNNER_TOOL_CACHE`
- **Internal**: `ACTIONS_CACHE_URL`, `ACTIONS_RUNTIME_*`, etc.
Closes https://gitea.com/gitea/docs/issues/350
Reviewed-on: https://gitea.com/gitea/docs/pulls/369
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-03-28 09:27:06 +00:00
TheFox0x7
8660c68d8c
add actions cron tasks ( #371 )
...
fixes: https://github.com/go-gitea/gitea/issues/37009 for docs
Reviewed-on: https://gitea.com/gitea/docs/pulls/371
Reviewed-by: Nicolas <173651+bircni@noreply.gitea.com >
Co-authored-by: TheFox0x7 <thefox0x7@gmail.com >
Co-committed-by: TheFox0x7 <thefox0x7@gmail.com >
2026-03-27 23:38:53 +00:00
wxiaoguang
9a00f8ea0c
Sync docs/administration/config-cheat-sheet.md ( #368 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/368
Reviewed-by: silverwind <2021+silverwind@noreply.gitea.com >
Co-authored-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
Co-committed-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
2026-03-24 15:44:11 +00:00
Excellencedev
0c17ed264d
Add docs for configurable permissions for Actions automatic tokens ( #366 )
...
Docs for https://github.com/go-gitea/gitea/pull/36173
Reviewed-on: https://gitea.com/gitea/docs/pulls/366
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: silverwind <2021+silverwind@noreply.gitea.com >
Reviewed-by: Nicolas <173651+bircni@noreply.gitea.com >
Co-authored-by: Excellencedev <ademiluyisuccessandexcellence@gmail.com >
Co-committed-by: Excellencedev <ademiluyisuccessandexcellence@gmail.com >
2026-03-24 11:11:25 +00:00
silverwind
47ef41da3b
Add DEFAULT_DELETE_BRANCH_AFTER_MERGE to config cheat sheet ( #367 )
...
Add documentation for the new `[repository.pull-request]` `DEFAULT_DELETE_BRANCH_AFTER_MERGE` config option added in https://github.com/go-gitea/gitea/pull/36917 .
*This comment was written by Claude.*
Reviewed-on: https://gitea.com/gitea/docs/pulls/367
Reviewed-by: TheFox0x7 <95654+thefox0x7@noreply.gitea.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-03-23 19:12:49 +00:00
silverwind
eb8ade10c7
Update environment variable docs, remove environment-to-ini references ( #355 )
...
The standalone `environment-to-ini` tool was removed in https://github.com/go-gitea/gitea/pull/35735 and its functionality is now built into the Gitea binary. This PR:
- Removes outdated links to the removed `contrib/environment-to-ini` directory
- Updates the "Use environment variables to setup Gitea" section in the config cheat sheet
- Adds examples showing how env vars map to `app.ini` settings and the `__FILE` suffix for secrets
*This PR was authored by Claude.*
Reviewed-on: https://gitea.com/gitea/docs/pulls/355
Reviewed-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
Reviewed-by: TheFox0x7 <95654+thefox0x7@noreply.gitea.com >
2026-03-17 18:19:18 +00:00
crrdean
6cd29ccce0
Fixed pull_request action name ( #359 )
...
synchronize should be synchronized
Reviewed-on: https://gitea.com/gitea/docs/pulls/359
Reviewed-by: techknowlogick <9+techknowlogick@noreply.gitea.com >
Co-authored-by: crrdean <183013+crrdean@noreply.gitea.com >
Co-committed-by: crrdean <183013+crrdean@noreply.gitea.com >
2026-03-10 20:00:25 +00:00
silverwind
8809db41d8
Fix signed pushes documentation ( #351 )
...
Now actually tested and working. All that's needed is the nonce in the gitea config.
Reviewed-on: https://gitea.com/gitea/docs/pulls/351
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
2026-03-08 18:20:51 +00:00
Zettat123
dc136aa31b
Add never option to PUBLIC_URL_DETECTION configuration ( #353 )
...
https://github.com/go-gitea/gitea/pull/36785
Reviewed-on: https://gitea.com/gitea/docs/pulls/353
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Zettat123 <zettat123@gmail.com >
Co-committed-by: Zettat123 <zettat123@gmail.com >
2026-03-01 19:00:35 +00:00
iqre8
d6bd3c6fb9
Update docs/installation/with-docker.md ( #352 )
...
Removed version, and changed the command from `docker-compose` to `docker compose` and changed the tool `docker-compose` to the docker `compose`-plugin
Reviewed-on: https://gitea.com/gitea/docs/pulls/352
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: silverwind <silverwind@noreply.gitea.com >
Co-authored-by: iqre8 <iqre8@noreply.gitea.com >
Co-committed-by: iqre8 <iqre8@noreply.gitea.com >
2026-02-25 20:20:32 +00:00
silverwind
44c6a0fa20
Move X_FRAME_OPTIONS from cors to security section ( #349 )
...
## Summary
- Move `X_FRAME_OPTIONS` setting from `[cors]` to `[security]` section in the config cheat sheet
- Document the new `unset` value option and clarify the header applies to web responses only
Ref: https://github.com/go-gitea/gitea/pull/30256
Reviewed-on: https://gitea.com/gitea/docs/pulls/349
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-02-22 20:27:19 +00:00
TheFox0x7
d26bbc9794
add new config options for releases ( #348 )
...
https://github.com/go-gitea/gitea/pull/36697
Reviewed-on: https://gitea.com/gitea/docs/pulls/348
Reviewed-by: wxiaoguang <wxiaoguang@noreply.gitea.com >
Reviewed-by: silverwind <silverwind@noreply.gitea.com >
Co-authored-by: TheFox0x7 <thefox0x7@gmail.com >
Co-committed-by: TheFox0x7 <thefox0x7@gmail.com >
2026-02-22 07:39:17 +00:00
silverwind
84bc4f138d
Add actions.WORKFLOW_DIRS setting to config cheat sheet ( #347 )
...
Add documentation for the new `actions.WORKFLOW_DIRS` setting introduced in https://github.com/go-gitea/gitea/pull/36619 for v1.26.
Reviewed-on: https://gitea.com/gitea/docs/pulls/347
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-02-19 19:02:58 +00:00
techknowlogick
1d21543b66
update ssh signing docs to reference draft RFC
2026-02-10 17:31:10 +00:00
Lunny Xiao
066080cf7b
Add documentation for ssh keys for http access ( #336 )
...
Fix #331
Reviewed-on: https://gitea.com/gitea/docs/pulls/336
Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.com >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-committed-by: Lunny Xiao <xiaolunwen@gmail.com >
2026-02-08 21:05:42 +00:00
osndok
2b96323137
Note differing default value for concurrency.cancel-in-progress ( #337 )
...
Whereas this bit me pretty hard, and [I don't seem to be the only one](https://forum.gitea.com/t/job-stopping-on-new-push/8142 ), the least we could do is let people know.
---------
Co-authored-by: Robert Hailey <git@osndok.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/337
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: osndok <osndok@noreply.gitea.com >
Co-committed-by: osndok <osndok@noreply.gitea.com >
2026-02-08 03:08:05 +00:00
Peter Ryszkiewicz
8a40822acd
Fix act runner doc typos and errors and simplify some grammar. ( #328 )
...
Fix act runner doc typos and errors and simplify some grammar.
Co-authored-by: Peter Ryszkiewicz <prizz@noreply.gitea.com >
Co-committed-by: Peter Ryszkiewicz <prizz@noreply.gitea.com >
2026-02-03 00:52:06 +00:00
silverwind
516a0af047
Add FOLDER_ICON_THEME ( #326 )
...
Available in 1.26 with https://github.com/go-gitea/gitea/pull/36496
Reviewed-on: https://gitea.com/gitea/docs/pulls/326
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-02-02 15:50:25 +00:00
TheFox0x7
c0384ba59a
update autocompletion help for v1.25 up ( #327 )
...
addresses: https://github.com/go-gitea/gitea/issues/36501
Reviewed-on: https://gitea.com/gitea/docs/pulls/327
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: TheFox0x7 <thefox0x7@gmail.com >
Co-committed-by: TheFox0x7 <thefox0x7@gmail.com >
2026-01-30 23:32:03 +00:00
Thomas Beutlich
96940ee764
Bump Online3DViewer and mention curl as option ( #320 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/320
Co-authored-by: Thomas Beutlich <thbeu@noreply.gitea.com >
Co-committed-by: Thomas Beutlich <thbeu@noreply.gitea.com >
2026-01-27 19:31:16 +00:00
dosenpils
49cc18e096
fixed broken link ( #322 )
...
There's a broken link in the documentation in the chapter [Use environment variables to setup Gitea](https://docs.gitea.com/administration/config-cheat-sheet#use-environment-variables-to-setup-gitea ) (Docs >> Administration >> Configuration Cheat Sheet).
This pull requests will fix this.
Reviewed-on: https://gitea.com/gitea/docs/pulls/322
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: dosenpils <dosenpils@donotdevelopmyapp.com >
Co-committed-by: dosenpils <dosenpils@donotdevelopmyapp.com >
2026-01-21 01:55:21 +00:00
wxiaoguang
8550cc4de1
remove unused git timeout config options
2026-01-21 01:36:27 +00:00
techknowlogick
6fe333ba07
remove passthrough from the docs
2026-01-15 15:32:21 +00:00
techknowlogick
9fbcdbbd60
remove passthrough from the docs
2026-01-15 15:31:47 +00:00
silverwind
18d05903c7
Add DIFF_RENAME_SIMILARITY_THRESHOLD ( #316 )
...
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2025-12-17 10:57:54 +00:00
wxiaoguang
b3335013da
Update docs/administration/mail-templates.md ( #309 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/309
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: wxiaoguang <wxiaoguang@noreply.gitea.com >
Co-committed-by: wxiaoguang <wxiaoguang@noreply.gitea.com >
2025-11-28 19:24:29 +00:00
FrostKiwi
072331ecae
Clarify package permissions and tokens scopes as discussed in https://github.com/go-gitea/gitea/issues/32048 ( #72 )
...
This adds explanations, that were missing regarding Token scopes and the packages feature requiring a token with said scope. Also added a missing explanation, that tokens can be created in the user interface, not just the API. The reason this PR is created was due to misunderstandings around the package feature, that arose during the discussion in https://github.com/go-gitea/gitea/issues/32048 .
This PR aims to clarify the misunderstood points around tokens, scopes and the package feature.
During the creation of this PR bug https://github.com/go-gitea/gitea/issues/32078 was found, the scopes are always reported as `null` during the response of the initial `POST` to create the token.
Co-authored-by: Wladislav ヴラド Artsimovich <wladislav.artsimovich@dmgmori.co.jp >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/72
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: FrostKiwi <frostkiwi@noreply.gitea.com >
Co-committed-by: FrostKiwi <frostkiwi@noreply.gitea.com >
2025-11-20 22:16:00 +00:00
gabriel_radureau
98a7ea3f53
correct mentionned "gitea-repositories" directory with actual folder "repositories" ( #266 )
...
The mentionned gitea-repositories folder doesn't exist in the recent version. Correct it to the existing repositories folder.
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/266
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: gabriel_radureau <gabriel_radureau@noreply.gitea.com >
Co-committed-by: gabriel_radureau <gabriel_radureau@noreply.gitea.com >
2025-11-20 22:09:30 +00:00
Lunny Xiao
df8b7a7581
Upgrade docusarus and fix broken links ( #301 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/301
2025-11-20 22:02:05 +00:00
Schallbert
0868bd41a4
Minor update for act_runner documentation: Update execution options, clarify docker run ( #256 )
...
- add act_runner options (host, docker, DinD)
- modify `docker run` command to include volume
- minor formulation updates
Reviewed-on: https://gitea.com/gitea/docs/pulls/256
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Schallbert <schallbert@mailbox.org >
Co-committed-by: Schallbert <schallbert@mailbox.org >
2025-11-20 21:52:54 +00:00
Vladimir Vitkov
c117cba701
add static resource config to the apache section ( #81 )
...
Add a section showing how to avoid proxying of static resources by Apache HTTPD
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/81
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Vladimir Vitkov <vvitkov@gmail.com >
Co-committed-by: Vladimir Vitkov <vvitkov@gmail.com >
2025-11-20 21:43:40 +00:00
Zettat123
2b99f48d47
Share actions and reusable workflows from private repositories ( #107 )
...
Update docs for https://github.com/go-gitea/gitea/pull/32562
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/107
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Zettat123 <zettat123@gmail.com >
Co-committed-by: Zettat123 <zettat123@gmail.com >
2025-11-20 19:57:50 +00:00
Lunny Xiao
9baa98ec3f
Move usage directories ( #300 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/300
2025-11-20 19:49:24 +00:00
Lunny Xiao
c05b0cec34
Add protected branches usage documentation ( #298 )
...
Fix https://github.com/go-gitea/gitea/issues/35972
Reviewed-on: https://gitea.com/gitea/docs/pulls/298
2025-11-20 18:07:29 +00:00
Lunny Xiao
dcb9b9b450
Use category instead of place holder markdown file as directory ( #299 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/299
2025-11-20 18:02:34 +00:00
dangjinghao
fd8beed04d
Fix formatting for Mailer.FROM address example in configuration cheat sheet ( #296 )
...
This example is incorrect.
wrong:
<img width="1058" alt="wrong-1.png" src="attachments/1cb3b95b-c3e4-4213-aeff-13e518021536">
<img width="442" alt="wrong-2.png" src="attachments/212aa79f-bbb7-457a-a0b8-fc7572f6d497">
<img width="1201" alt="wrong-3.png" src="attachments/32fde98a-d987-475c-9f88-d563c177ad24">
correct:
<img width="1034" alt="correct-1.png" src="attachments/b4993846-eec2-4e7c-8adc-11fc335216dc">
<img width="410" alt="correct-2.png" src="attachments/419ad32c-4080-462e-af5e-8fc9f63727a7">
Reviewed-on: https://gitea.com/gitea/docs/pulls/296
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: dangjinghao <dangjinghaoemail@163.com >
Co-committed-by: dangjinghao <dangjinghaoemail@163.com >
2025-11-15 03:43:02 +00:00
kairosys-dev
ffc8c044a3
Correct port 465 for SMTPS, not 587 for STARTTLS ( #295 )
...
The SMTPS protocol uses port 465, not 587. Port 587 is instead used for STARTTLS.
Helps getting administrators stuck in cryptic errors such as:
Failed to send a testing email to "user@mydomain.com ": could not initiate SMTP session: tls: first record does not look like a TLS handshake
Reviewed-on: https://gitea.com/gitea/docs/pulls/295
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: kairosys-dev <me@arch-on.top >
Co-committed-by: kairosys-dev <me@arch-on.top >
2025-11-11 19:35:01 +00:00
Cory Sanin
a77b0937cf
Corrections for Arch package registry page ( #291 )
...
pairs nicely with https://github.com/go-gitea/gitea/pull/35825
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/291
Reviewed-by: silverwind <silverwind@noreply.gitea.com >
Co-authored-by: Cory Sanin <corysanin@outlook.com >
Co-committed-by: Cory Sanin <corysanin@outlook.com >
2025-11-05 17:26:38 +00:00
dangjinghao
0c7fce4512
Remove run-name section from Comparison to GitHub Actions ( #290 )
...
Since `run-name` support was added in [v1.25.0](https://github.com/go-gitea/gitea/releases/tag/v1.25.0 ), I've removed the outdated `run-name` section from `usage/actions/comparison.md`.
Reviewed-on: https://gitea.com/gitea/docs/pulls/290
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: dangjinghao <dangjinghaoemail@163.com >
Co-committed-by: dangjinghao <dangjinghaoemail@163.com >
2025-11-01 21:11:55 +00:00
wxiaoguang
12293b604e
Update docs/administration/config-cheat-sheet.md ( #285 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/285
2025-10-25 03:47:14 +00:00
dangjinghao
bb7b7fe5bf
Add frontmatter and TOC rendering support for markdown files ( #284 )
...
<https://github.com/go-gitea/gitea/issues/14411#issuecomment-764871702 >
Reviewed-on: https://gitea.com/gitea/docs/pulls/284
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: dangjinghao <dangjinghaoemail@163.com >
Co-committed-by: dangjinghao <dangjinghaoemail@163.com >
2025-10-23 17:55:14 +00:00
DiegoBM
bd38456e4b
Fix home reference ( #281 )
...
~ points to the logged user's home, not to /home
Co-authored-by: Diego de Blas Mateo <1613216+DiegoBM@users.noreply.github.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/281
Reviewed-by: TheFox0x7 <thefox0x7@noreply.gitea.com >
Co-authored-by: DiegoBM <diegobm@noreply.gitea.com >
Co-committed-by: DiegoBM <diegobm@noreply.gitea.com >
2025-10-16 14:43:55 +00:00