silverwind
3842dd1f55
build: update pnpm to v11 and pin exact dependencies ( #441 )
...
- bump `packageManager` to `pnpm@11.7.0`, move settings to `pnpm-workspace.yaml`, drop the npm-only `.npmrc`
- pin all dependencies to exact versions
Reviewed-on: https://gitea.com/gitea/docs/pulls/441
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-06-18 09:14:55 +00:00
Renovate Bot
4b2bcc99a2
chore(deps): update pnpm to v10.34.3 ( #440 )
...
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [pnpm](https://pnpm.io ) ([source](https://github.com/pnpm/pnpm/tree/HEAD/pnpm )) | [`10.34.2` → `10.34.3`](https://renovatebot.com/diffs/npm/pnpm/10.34.2/10.34.3 ) |  |  |
---
### Release Notes
<details>
<summary>pnpm/pnpm (pnpm)</summary>
### [`v10.34.3`](https://github.com/pnpm/pnpm/releases/tag/v10.34.3 ): pnpm 10.34.3
[Compare Source](https://github.com/pnpm/pnpm/compare/v10.34.2...v10.34.3 )
##### ⚠️ Security fix — environment variables in a project `.npmrc` (action may be required)
Following [GHSA-3qhv-2rgh-x77r](https://github.com/pnpm/pnpm/security/advisories/GHSA-3qhv-2rgh-x77r ), pnpm no longer expands `${ENV_VAR}` placeholders that come from a **repository-controlled** config file, because a malicious repository could otherwise use them to leak your environment secrets (npm tokens, CI job tokens, etc.) to an attacker-controlled registry during install. This applies to:
- the project/workspace `.npmrc` — `registry`, `@scope:registry`, proxy URLs, URL-scoped keys (`//host/…`), and credential values (`_authToken`, `_auth`, `_password`, `username`, `tokenHelper`, `cert`, `key`);
- registry URLs in `pnpm-workspace.yaml`.
This release also closes a bypass where a project `.npmrc` could set `userconfig`, `globalconfig`, or `prefix` to make pnpm load a repo-supplied file as *trusted* config (via `@pnpm/npm-conf@3.0.3`).
Environment variables are **still** expanded in trusted config: your user-level `~/.npmrc`, the global config, CLI options, and environment config.
**If your authentication broke after upgrading**, move the token out of the committed `.npmrc`:
```sh
# Writes to your user/global config, not the repository:
pnpm config set "//registry.npmjs.org/:_authToken" "$NPM_TOKEN"
```
Or keep the `${NPM_TOKEN}` line but put it in your user-level `~/.npmrc` instead of the repo. In **GitHub Actions**, `actions/setup-node` with `registry-url` already writes a user-level `.npmrc`, so `NODE_AUTH_TOKEN` keeps working. For other CI where editing each pipeline is hard, set `NPM_CONFIG_USERCONFIG=.npmrc` in the CI environment to declare the project `.npmrc` trusted.
See <https://pnpm.io/npmrc > for full migration details.
#### Patch Changes
- Improved the warning printed when a project `.npmrc` uses an environment variable in a registry/proxy URL or in registry credentials. The message now explains why the setting was ignored and how to migrate it to a trusted source — for example by running `pnpm config set "<key>" <value>` to store it in the global config, or by keeping the `${...}` line in the user-level `~/.npmrc` — with a link to <https://pnpm.io/npmrc >.
- A repository-controlled project or workspace `.npmrc` can no longer redirect which files pnpm loads as its trusted user and global configuration. Previously such a file could set `userconfig`, `globalconfig`, or `prefix` to point at an attacker-supplied file shipped in the repository, and pnpm would load it as a trusted config source — bypassing the protection that prevents repository config from expanding environment variables into registry request destinations and credentials, and allowing it to set `tokenHelper`. The user/global config file locations are now resolved only from trusted sources (CLI options, environment config, the npm builtin config, and defaults) before the project and workspace `.npmrc` files are read. Fixed by upgrading `@pnpm/npm-conf` to `3.0.3`.
<!-- sponsors -->
#### Platinum Sponsors
<table>
<tbody>
<tr>
<td align="center" valign="middle">
<a href="https://bit.cloud/?utm_source=pnpm&utm_medium=release_notes " target="_blank"><img src="https://pnpm.io/img/users/bit.svg " width="80" alt="Bit"></a>
</td>
</tr>
</tbody>
</table>
#### Gold Sponsors
<table>
<tbody>
<tr>
<td align="center" valign="middle">
<a href="https://sanity.io/?utm_source=pnpm&utm_medium=release_notes " target="_blank">
<picture>
<source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/sanity.svg " />
<source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/sanity_light.svg " />
<img src="https://pnpm.io/img/users/sanity.svg " width="120" alt="Sanity" />
</picture>
</a>
</td>
<td align="center" valign="middle">
<a href="https://discord.com/?utm_source=pnpm&utm_medium=release_notes " target="_blank">
<picture>
<source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/discord.svg " />
<source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/discord_light.svg " />
<img src="https://pnpm.io/img/users/discord.svg " width="220" alt="Discord" />
</picture>
</a>
</td>
<td align="center" valign="middle">
<a href="https://vite.dev/?utm_source=pnpm&utm_medium=release_notes " target="_blank"><img src="https://pnpm.io/img/users/vitejs.svg " width="42" alt="Vite"></a>
</td>
</tr>
<tr>
<td align="center" valign="middle">
<a href="https://serpapi.com/?utm_source=pnpm&utm_medium=release_notes " target="_blank">
<picture>
<source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/serpapi_dark.svg " />
<source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/serpapi_light.svg " />
<img src="https://pnpm.io/img/users/serpapi_dark.svg " width="160" alt="SerpApi" />
</picture>
</a>
</td>
<td align="center" valign="middle">
<a href="https://coderabbit.ai/?utm_source=pnpm&utm_medium=release_notes " target="_blank">
<picture>
<source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/coderabbit.svg " />
<source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/coderabbit_light.svg " />
<img src="https://pnpm.io/img/users/coderabbit.svg " width="220" alt="CodeRabbit" />
</picture>
</a>
</td>
<td align="center" valign="middle">
<a href="https://stackblitz.com/?utm_source=pnpm&utm_medium=release_notes " target="_blank">
<picture>
<source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/stackblitz.svg " />
<source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/stackblitz_light.svg " />
<img src="https://pnpm.io/img/users/stackblitz.svg " width="190" alt="Stackblitz" />
</picture>
</a>
</td>
</tr>
<tr>
<td align="center" valign="middle">
<a href="https://workleap.com/?utm_source=pnpm&utm_medium=release_notes " target="_blank">
<picture>
<source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/workleap.svg " />
<source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/workleap_light.svg " />
<img src="https://pnpm.io/img/users/workleap.svg " width="190" alt="Workleap" />
</picture>
</a>
</td>
<td align="center" valign="middle">
<a href="https://nx.dev/?utm_source=pnpm&utm_medium=release_notes " target="_blank">
<picture>
<source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/nx.svg " />
<source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/nx_light.svg " />
<img src="https://pnpm.io/img/users/nx.svg " width="50" alt="Nx" />
</picture>
</a>
</td>
</tr>
</tbody>
</table>
<!-- sponsors end -->
</details>
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- At any time (no schedule defined)
- Automerge
- At any time (no schedule defined)
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Reviewed-on: https://gitea.com/gitea/docs/pulls/440
Reviewed-by: silverwind <2021+silverwind@noreply.gitea.com >
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-06-17 07:05:14 +00:00
Renovate Bot
49dec05ddd
chore(deps): update pnpm to v10.34.2 ( #438 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/438
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-06-16 16:51:52 +00:00
Nicolas
eb65e671a2
Runner docs v1.0.8 ( #435 )
...
Adds a versioned docs snapshot for Gitea Runner v1.0.8 (latest stable),
updates lastVersion and navbar to point to the new version while keeping
0.2.11 in the dropdown for historical reference.
---------
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/435
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Nicolas <bircni@icloud.com >
Co-committed-by: Nicolas <bircni@icloud.com >
2026-06-14 00:30:30 +00:00
Renovate Bot
7737ef98a4
chore(deps): update dependency @mui/material to v9.1.0 ( #437 )
...
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [@mui/material](https://mui.com/material-ui/ ) ([source](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material )) | [`9.0.1` → `9.1.0`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/9.0.1/9.1.0 ) |  |  |
---
### Release Notes
<details>
<summary>mui/material-ui (@​mui/material)</summary>
### [`v9.1.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#910 )
[Compare Source](https://github.com/mui/material-ui/compare/v9.0.1...v9.1.0 )
<!-- generated comparing v9.0.1..master -->
*Jun 8, 2026*
A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨ :
- ⚙️ Support for the [prefers-reduced-motion](https://mui.com/material-ui/transitions/#reduced-motion ) setting.
- ♿ ️ Improved support for Windows High Contrast mode with the [enhanceHighContrast](https://mui.com/material-ui/customization/palette/#windows-high-contrast-mode ) theme wrapper.
##### `@mui/material@9.1.0`
- \[autocomplete] Enable clearing highlight when mouse leaves popup ([#​48354](https://github.com/mui/material-ui/issues/48354 )) [@​mj12albert](https://github.com/mj12albert )
- \[autocomplete] Fix `freeSolo` controlled values cleared by initial `null` ([#​48611](https://github.com/mui/material-ui/issues/48611 )) [@​mj12albert](https://github.com/mj12albert )
- \[autocomplete] Fix item removal when it receives focus from VoiceOver before using Backspace ([#​48572](https://github.com/mui/material-ui/issues/48572 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[autocomplete] Fix `resetHighlightOnMouseLeave` JSdoc ([#​48536](https://github.com/mui/material-ui/issues/48536 )) [@​mj12albert](https://github.com/mj12albert )
- \[autocomplete] Guard against null inputRef during unmount ([#​48617](https://github.com/mui/material-ui/issues/48617 )) [@​noam3127](https://github.com/noam3127 )
- \[badge] Add `aria-hidden` to badge content and polish docs demos ([#​48471](https://github.com/mui/material-ui/issues/48471 )) [@​mj12albert](https://github.com/mj12albert )
- \[badge] Use inline CSS variables for anchorOrigin/overlap positioning ([#​48549](https://github.com/mui/material-ui/issues/48549 )) [@​siriwatknp](https://github.com/siriwatknp )
- \[button] Fix customized flex gap styles ([#​48542](https://github.com/mui/material-ui/issues/48542 )) [@​mj12albert](https://github.com/mj12albert )
- \[dialog] Fix unwanted `DialogPaper` focus ring ([#​48535](https://github.com/mui/material-ui/issues/48535 )) [@​mj12albert](https://github.com/mj12albert )
- \[focus trap] Fix incorrect tab order when `tabIndex >= 1` ([#​48546](https://github.com/mui/material-ui/issues/48546 )) [@​mj12albert](https://github.com/mj12albert )
- \[progress] Show runtime errors only once ([#​48591](https://github.com/mui/material-ui/issues/48591 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[select] Allow spacebar to select elements ([#​48615](https://github.com/mui/material-ui/issues/48615 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[select] Support typeahead when closed ([#​48563](https://github.com/mui/material-ui/issues/48563 )) [@​mj12albert](https://github.com/mj12albert )
- \[step button] Choose higher contrast ripple color for dark mode focus ([#​48612](https://github.com/mui/material-ui/issues/48612 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[stepper] Include StepConnector inside Step element ([#​48492](https://github.com/mui/material-ui/issues/48492 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[stepper] Proper support for vertical alternativeLabel ([#​48485](https://github.com/mui/material-ui/issues/48485 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[tabs] Fix React 18 roving tabindex and dedupe invalid-value warning ([#​48605](https://github.com/mui/material-ui/issues/48605 )) [@​Janpot](https://github.com/Janpot )
- \[theme] Add HighContrast theme enhancer ([#​48319](https://github.com/mui/material-ui/issues/48319 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[timeline item] Fix extra ::before spacing when TimelineOppositeContent is present ([#​46663](https://github.com/mui/material-ui/issues/46663 )) [@​tyalau](https://github.com/tyalau )
- \[tooltip] Prevent stuck-open tooltip when child becomes disabled ([#​48606](https://github.com/mui/material-ui/issues/48606 )) [@​Janpot](https://github.com/Janpot )
- \[transitions] Custom `Transition` component ([#​48325](https://github.com/mui/material-ui/issues/48325 )) [@​mj12albert](https://github.com/mj12albert )
- \[transitions] Support `prefers-reduced-motion` ([#​48357](https://github.com/mui/material-ui/issues/48357 )) [@​mj12albert](https://github.com/mj12albert )
##### `@mui/utils@9.1.0`
- \[utils] Prevent prototype pollution in fastDeepAssign ([#​48580](https://github.com/mui/material-ui/issues/48580 )) [@​Janpot](https://github.com/Janpot )
##### Docs
- \[docs] Add function `slotProps` documentation ([#​48574](https://github.com/mui/material-ui/issues/48574 )) [@​mj12albert](https://github.com/mj12albert )
- \[docs] Clarify styled-components version compatibility ([#​48533](https://github.com/mui/material-ui/issues/48533 )) [@​nightt5879](https://github.com/nightt5879 )
- \[docs] Fix broken URLs ([#​48520](https://github.com/mui/material-ui/issues/48520 )) [@​oliviertassinari](https://github.com/oliviertassinari )
- \[docs] Fix invalid JSON in Zed MCP setup example ([#​48490](https://github.com/mui/material-ui/issues/48490 )) [@​pavan-sh](https://github.com/pavan-sh )
- \[docs] Mention release version for enhanceHighContrast ([#​48609](https://github.com/mui/material-ui/issues/48609 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[docs] Remove outdated MUI X v8 notification ([#​48600](https://github.com/mui/material-ui/issues/48600 )) [@​cherniavskii](https://github.com/cherniavskii )
- \[docs] Remove redundant enhanceHighContrast information ([#​48632](https://github.com/mui/material-ui/issues/48632 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[docs-infra] Decrease loaded bundle size on docs ([#​48584](https://github.com/mui/material-ui/issues/48584 )) [@​brijeshb42](https://github.com/brijeshb42 )
- \[docs-infra] Drop multi-locale plumbing from API pages ([#​48370](https://github.com/mui/material-ui/issues/48370 )) [@​brijeshb42](https://github.com/brijeshb42 )
- \[docs-infra] Fix Cookie banner heading ([#​48529](https://github.com/mui/material-ui/issues/48529 )) [@​oliviertassinari](https://github.com/oliviertassinari )
- \[docs-infra] Infinitely cache all static assets ([#​48627](https://github.com/mui/material-ui/issues/48627 )) [@​brijeshb42](https://github.com/brijeshb42 )
- \[docs-infra] Remove outdated noSEOadvantage entries ([#​48527](https://github.com/mui/material-ui/issues/48527 )) [@​oliviertassinari](https://github.com/oliviertassinari )
- \[docs-infra] Restore build-only invariant throws via `NEXT_RUNTIME` guard ([#​48475](https://github.com/mui/material-ui/issues/48475 )) [@​Janpot](https://github.com/Janpot )
- \[docs-infra] Test HTML validation in broken links checker ([#​48088](https://github.com/mui/material-ui/issues/48088 )) [@​Janpot](https://github.com/Janpot )
- \[docs]\[icons] Fix Font Awesome Chip demo in dark mode ([#​48576](https://github.com/mui/material-ui/issues/48576 )) [@​siriwatknp](https://github.com/siriwatknp )
- \[docs]\[icons] Remove redundant font awesome demo ([#​48493](https://github.com/mui/material-ui/issues/48493 )) [@​ZeeshanTamboli](https://github.com/ZeeshanTamboli )
- \[docs]\[modal] Add nested modal guidance ([#​46507](https://github.com/mui/material-ui/issues/46507 )) [@​JakeSaterlay](https://github.com/JakeSaterlay )
- \[docs]\[stepper] Fix focus management in examples ([#​48494](https://github.com/mui/material-ui/issues/48494 )) [@​silviuaavram](https://github.com/silviuaavram )
##### Core
- Eslint markdown ([#​48371](https://github.com/mui/material-ui/issues/48371 )) [@​Janpot](https://github.com/Janpot )
- \[agents] Fix some docs links ([#​48561](https://github.com/mui/material-ui/issues/48561 )) [@​silviuaavram](https://github.com/silviuaavram )
- \[blog] Copy editing improvement on v9 announcement blog posts ([#​48543](https://github.com/mui/material-ui/issues/48543 )) [@​joserodolfofreitas](https://github.com/joserodolfofreitas )
- \[code-infra] Cleanup unused jss packages ([#​48590](https://github.com/mui/material-ui/issues/48590 )) [@​brijeshb42](https://github.com/brijeshb42 )
- \[code-infra] Collapse canary workflows into nightly and nightly-cron ([#​48556](https://github.com/mui/material-ui/issues/48556 )) [@​Janpot](https://github.com/Janpot )
- \[code-infra] Convert [@​mui/private-theming](https://github.com/mui/private-theming ) to TypeScript ([#​48565](https://github.com/mui/material-ui/issues/48565 )) [@​Janpot](https://github.com/Janpot )
- \[code-infra] Convert [@​mui/styled-engine](https://github.com/mui/styled-engine ) to TypeScript ([#​48544](https://github.com/mui/material-ui/issues/48544 )) [@​Janpot](https://github.com/Janpot )
- \[code-infra] Convert [@​mui/styled-engine-sc](https://github.com/mui/styled-engine-sc ) to TypeScript ([#​48577](https://github.com/mui/material-ui/issues/48577 )) [@​Janpot](https://github.com/Janpot )
- \[code-infra] Fix duplicate resource\_class in test\_regressions CI job ([#​48601](https://github.com/mui/material-ui/issues/48601 )) [@​LukasTy](https://github.com/LukasTy )
- \[code-infra] Make [@​mui/internal-docs-utils](https://github.com/mui/internal-docs-utils ) compatible with TypeScript 6 ([#​48594](https://github.com/mui/material-ui/issues/48594 )) [@​Janpot](https://github.com/Janpot )
- \[code-infra] Migrate CircleCI jobs to Gen2 resource classes ([#​48593](https://github.com/mui/material-ui/issues/48593 )) [@​LukasTy](https://github.com/LukasTy )
- \[code-infra] Parallelize visual regression screenshots ([#​48557](https://github.com/mui/material-ui/issues/48557 )) [@​Janpot](https://github.com/Janpot )
- \[code-infra] Run nightly-cron on v7.x ([#​48579](https://github.com/mui/material-ui/issues/48579 )) [@​Janpot](https://github.com/Janpot )
- \[core] Fix typescript\@​next typecheck ([#​48587](https://github.com/mui/material-ui/issues/48587 )) [@​Janpot](https://github.com/Janpot )
- \[pnpm] Add security settings to pnpm-workspace.yaml ([#​48582](https://github.com/mui/material-ui/issues/48582 )) [@​Janpot](https://github.com/Janpot )
- \[styled-engine-sc] Fix compatibility with Vite and Vitest ([#​48558](https://github.com/mui/material-ui/issues/48558 )) [@​mj12albert](https://github.com/mj12albert )
- \[test] Add axe-core tests for mui-material ([#​48341](https://github.com/mui/material-ui/issues/48341 )) [@​siriwatknp](https://github.com/siriwatknp )
- \[test] Configure Tailwind CSS in the visual-regression app ([#​48575](https://github.com/mui/material-ui/issues/48575 )) [@​Janpot](https://github.com/Janpot )
All contributors of this release in alphabetical order: [@​brijeshb42](https://github.com/brijeshb42 ), [@​cherniavskii](https://github.com/cherniavskii ), [@​JakeSaterlay](https://github.com/JakeSaterlay ), [@​Janpot](https://github.com/Janpot ), [@​joserodolfofreitas](https://github.com/joserodolfofreitas ), [@​LukasTy](https://github.com/LukasTy ), [@​mj12albert](https://github.com/mj12albert ), [@​nightt5879](https://github.com/nightt5879 ), [@​noam3127](https://github.com/noam3127 ), [@​oliviertassinari](https://github.com/oliviertassinari ), [@​pavan-sh](https://github.com/pavan-sh ), [@​silviuaavram](https://github.com/silviuaavram ), [@​siriwatknp](https://github.com/siriwatknp ), [@​tyalau](https://github.com/tyalau ), [@​ZeeshanTamboli](https://github.com/ZeeshanTamboli )
</details>
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- At any time (no schedule defined)
- Automerge
- At any time (no schedule defined)
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Reviewed-on: https://gitea.com/gitea/docs/pulls/437
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-06-14 00:26:19 +00:00
Nicolas
98c4aa4bd0
fix: correct typo in FAQ regarding Configuration Summary ( #436 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/436
Reviewed-by: TheFox0x7 <95654+thefox0x7@noreply.gitea.com >
Co-authored-by: Nicolas <bircni@icloud.com >
Co-committed-by: Nicolas <bircni@icloud.com >
2026-06-13 17:07:13 +00:00
wxiaoguang
88f92b0698
Add CONTENT_SECURITY_POLICY_GENERAL ( #434 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/434
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
Co-committed-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
2026-06-12 01:27:20 +00:00
Renovate Bot
45165ceb22
chore(deps): update pnpm to v10.34.1 ( #430 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/430
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-06-10 15:01:24 +00:00
Renovate Bot
fb856b8432
chore(deps): update dependency @easyops-cn/docusaurus-search-local to v0.55.2 ( #431 )
...
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [@easyops-cn/docusaurus-search-local](https://github.com/easyops-cn/docusaurus-search-local ) ([source](https://github.com/easyops-cn/docusaurus-search-local/tree/HEAD/packages/docusaurus-search-local )) | [`0.55.1` → `0.55.2`](https://renovatebot.com/diffs/npm/@easyops-cn%2fdocusaurus-search-local/0.55.1/0.55.2 ) |  |  |
---
### Release Notes
<details>
<summary>easyops-cn/docusaurus-search-local (@​easyops-cn/docusaurus-search-local)</summary>
### [`v0.55.2`](https://github.com/easyops-cn/docusaurus-search-local/releases/tag/v0.55.2 )
[Compare Source](https://github.com/easyops-cn/docusaurus-search-local/compare/v0.55.1...v0.55.2 )
##### Bug Fixes
- some languages need lunr wordcut ([1e60641](1e60641f5d ))
- some languages need lunr wordcut ([d871555](d87155582f )), closes [#​438](https://github.com/easyops-cn/docusaurus-search-local/issues/438 )
</details>
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- At any time (no schedule defined)
- Automerge
- At any time (no schedule defined)
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Reviewed-on: https://gitea.com/gitea/docs/pulls/431
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-06-10 02:17:40 +00:00
Renovate Bot
8bb0e9f105
chore(deps): update react monorepo to v19.2.7 ( #432 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/432
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-06-09 14:01:39 +00:00
nico-i
eb5204f658
Added project config to issue template example ( #428 )
...
I have updated the docs since this feature is now supported.
Reviewed-on: https://gitea.com/gitea/docs/pulls/428
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: nico-i <nico@ismaili.de >
Co-committed-by: nico-i <nico@ismaili.de >
2026-05-29 16:52:56 +00:00
Zettat123
95106c08e9
docs: split MAX_CREATION_LIMIT into USER_MAX_CREATION_LIMIT and ORG_MAX_CREATION_LIMIT ( #427 )
...
Related https://github.com/go-gitea/gitea/pull/37872
Reviewed-on: https://gitea.com/gitea/docs/pulls/427
Reviewed-by: Nicolas <bircni@icloud.com >
Co-authored-by: Zettat123 <39446+zettat123@noreply.gitea.com >
Co-committed-by: Zettat123 <39446+zettat123@noreply.gitea.com >
2026-05-28 17:29:35 +00:00
wxiaoguang
478059a7ed
Update SSH_PORT comment
2026-05-27 06:01:42 +00:00
harryzcy
69e92d33ec
docs: update conan login command for conan v2 ( #426 )
...
Conan v1 reached end-of-life. https://blog.conan.io/2024/09/30/Conan-Center-will-stop-receiving-updates-for-Conan-1.html
The command for conan v2 login has changed to `conan remote login`. https://docs.conan.io/2/reference/commands/remote.html#conan-remote-login
I briefly looked at Gitea codebase. Gitea supports conan v2 cli (given functions like `DeleteRecipeV2` and `SearchPackagesV2`)
---------
Co-authored-by: Chongyi Zheng <git@zcy.dev >
Reviewed-on: https://gitea.com/gitea/docs/pulls/426
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: harryzcy <37645+harryzcy@noreply.gitea.com >
Co-committed-by: harryzcy <37645+harryzcy@noreply.gitea.com >
2026-05-26 07:53:05 +00:00
Lunny Xiao
21aad7f5d1
update 1.26.2 ( #424 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/424
Reviewed-by: Nicolas <bircni@icloud.com >
2026-05-20 21:59:25 +00:00
wxiaoguang
8b31adbc6f
fix: make DEFAULT_TITLE_SOURCE default to auto
2026-05-19 08:07:42 +00:00
Renovate Bot
eea1d90216
chore(deps): update react monorepo to v19.2.6 ( #423 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/423
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-05-14 16:52:34 +00:00
Renovate Bot
19c2342e2f
chore(deps): update dependency @mui/material to v9.0.1 ( #422 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/422
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-05-14 16:36:03 +00:00
Renovate Bot
d9effabc6c
chore(deps): update pnpm to v10.33.4 ( #418 )
...
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [pnpm](https://pnpm.io ) ([source](https://github.com/pnpm/pnpm/tree/HEAD/pnpm )) | [`10.33.2` → `10.33.4`](https://renovatebot.com/diffs/npm/pnpm/10.33.2/10.33.4 ) |  |  |
---
> ⚠️ **Warning**
>
> Some dependencies could not be looked up. Check the [Dependency Dashboard](issues/114) for more information.
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- At any time (no schedule defined)
- Automerge
- At any time (no schedule defined)
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNjAuNiIsInVwZGF0ZWRJblZlciI6IjQzLjE2NS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
---------
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: silverwind <2021+silverwind@noreply.gitea.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/418
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-05-07 17:23:56 +00:00
Lunny Xiao
54af905d63
rename act runner to runner ( #390 )
...
Depends on gitea/runner#850
---------
Co-authored-by: Nicolas <bircni@icloud.com >
Co-authored-by: silverwind <me@silverwind.io >
Reviewed-on: https://gitea.com/gitea/docs/pulls/390
Reviewed-by: techknowlogick <9+techknowlogick@noreply.gitea.com >
Reviewed-by: silverwind <2021+silverwind@noreply.gitea.com >
Reviewed-by: Nicolas <bircni@icloud.com >
2026-05-07 17:18:58 +00:00
wxiaoguang
b6b8dbcc64
Update SQLITE_TIMEOUT ( #419 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/419
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
Co-committed-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
2026-05-07 12:59:34 +00:00
silverwind
5bab08db10
Note OpenSearch compatibility for elasticsearch indexer ( #417 )
...
https://github.com/go-gitea/gitea/pull/37411
---
This PR was written with the help of Claude Opus 4.7
Reviewed-on: https://gitea.com/gitea/docs/pulls/417
Reviewed-by: Nicolas <bircni@icloud.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-05-04 11:38:21 +00:00
Renovate Bot
173bc20908
chore(deps): update docusaurus monorepo to v3.10.1 ( #392 )
...
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|
| [@docusaurus/core](https://github.com/facebook/docusaurus ) ([source](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus )) | [`3.10.0` → `3.10.1`](https://renovatebot.com/diffs/npm/@docusaurus%2fcore/3.10.0/3.10.1 ) |  |  |
| [@docusaurus/faster](https://github.com/facebook/docusaurus ) ([source](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-faster )) | [`3.10.0` → `3.10.1`](https://renovatebot.com/diffs/npm/@docusaurus%2ffaster/3.10.0/3.10.1 ) |  |  |
| [@docusaurus/module-type-aliases](https://github.com/facebook/docusaurus ) ([source](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases )) | [`3.10.0` → `3.10.1`](https://renovatebot.com/diffs/npm/@docusaurus%2fmodule-type-aliases/3.10.0/3.10.1 ) |  |  |
| [@docusaurus/plugin-content-docs](https://github.com/facebook/docusaurus ) ([source](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-plugin-content-docs )) | [`3.10.0` → `3.10.1`](https://renovatebot.com/diffs/npm/@docusaurus%2fplugin-content-docs/3.10.0/3.10.1 ) |  |  |
| [@docusaurus/preset-classic](https://github.com/facebook/docusaurus ) ([source](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic )) | [`3.10.0` → `3.10.1`](https://renovatebot.com/diffs/npm/@docusaurus%2fpreset-classic/3.10.0/3.10.1 ) |  |  |
---
### Release Notes
<details>
<summary>facebook/docusaurus (@​docusaurus/core)</summary>
### [`v3.10.1`](https://github.com/facebook/docusaurus/blob/HEAD/CHANGELOG.md#3101-2026-04-30 )
[Compare Source](https://github.com/facebook/docusaurus/compare/v3.10.0...v3.10.1 )
##### 🐛 Bug Fix
- `docusaurus-bundler`
- [#​11981](https://github.com/facebook/docusaurus/pull/11981 ) fix(bundler): fix v3 webpackbar bug due to webpack breaking change ([@​slorber](https://github.com/slorber ))
##### 🔧 Maintenance
- `docusaurus`
- [#​11982](https://github.com/facebook/docusaurus/pull/11982 ) chore: cherry-pick commits for v3.10.1 patch release ([@​slorber](https://github.com/slorber ))
##### Committers: 1
- Sébastien Lorber ([@​slorber](https://github.com/slorber ))
</details>
---
Reviewed-on: https://gitea.com/gitea/docs/pulls/392
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-05-02 02:05:18 +00:00
Lunny Xiao
14b76120b4
update webhook documentation ( #393 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/393
2026-05-01 16:40:27 +00:00
wxiaoguang
f550d33ad7
Update SSH_ROOT_PATH / attachment comment ( #373 )
...
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: silverwind <2021+silverwind@noreply.gitea.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/373
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
Co-committed-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
2026-04-28 21:56:14 +00:00
0xGREG
e0fcc861f2
Document DEFAULT_TITLE_SOURCE pull request title setting ( #391 )
...
Adds documentation for the `DEFAULT_TITLE_SOURCE` setting.
- Added `DEFAULT_TITLE_SOURCE` to the config cheat sheet under `[repository.pull-request]`
- Added a "Default pull request title" section to the pull request usage docs explaining both modes (`first-commit` and `auto`)
---------
Co-authored-by: Nicolas <bircni@icloud.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/391
Reviewed-by: Nicolas <bircni@icloud.com >
Co-authored-by: 0xGREG <gitea@freespeech.work >
Co-committed-by: 0xGREG <gitea@freespeech.work >
2026-04-28 21:45:22 +00:00
Renovate Bot
a0802c6748
chore(deps): update pnpm to v10.33.2 ( #388 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/388
Reviewed-by: silverwind <2021+silverwind@noreply.gitea.com >
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-04-28 16:31:48 +00:00
Lunny Xiao
49a6f7649a
update 1.26.1
2026-04-25 11:28:59 -07:00
Zettat123
3ef08b184a
Add MAX_RERUN_ATTEMPTS to config cheat sheet ( #383 )
...
Related https://github.com/go-gitea/gitea/pull/37119
Reviewed-on: https://gitea.com/gitea/docs/pulls/383
Reviewed-by: Nicolas <bircni@icloud.com >
Co-authored-by: Zettat123 <39446+zettat123@noreply.gitea.com >
Co-committed-by: Zettat123 <39446+zettat123@noreply.gitea.com >
2026-04-25 18:25:14 +00:00
silverwind
58d5c6c5e3
Add X_CONTENT_TYPE_OPTIONS ( #389 )
...
https://github.com/go-gitea/gitea/pull/37354
---
This PR was written with the help of Claude Opus 4.7
---------
Co-authored-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/389
Reviewed-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-04-24 10:54:21 +00:00
wxiaoguang
76b9c25b6d
Add CUSTOM_SCHEMES ( #387 )
...
https://github.com/go-gitea/gitea/pull/37356
Reviewed-on: https://gitea.com/gitea/docs/pulls/387
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
Co-committed-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
2026-04-22 22:10:57 +00:00
Lunny Xiao
fd5cb8bb44
Follow blog to use blue color for links ( #385 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/385
Reviewed-by: silverwind <2021+silverwind@noreply.gitea.com >
2026-04-20 17:36:38 +00:00
Lunny Xiao
b5e28002f4
release 1.26.0 ( #384 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/384
Reviewed-by: techknowlogick <9+techknowlogick@noreply.gitea.com >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-committed-by: Lunny Xiao <xiaolunwen@gmail.com >
2026-04-19 00:46:51 +00:00
Renovate Bot
9fe613c7de
chore(deps): update react monorepo to v19.2.5 ( #379 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/379
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-04-15 15:29:34 +00:00
Renovate Bot
3c6ead6e59
chore(deps): update pnpm/action-setup action to v6 ( #382 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/382
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-04-15 15:17:51 +00:00
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
techknowlogick
4a63d1ea7f
update deprecated config option
2026-04-15 14:51:35 +00:00
wxiaoguang
a939f44e37
fix typo
...
# Conflicts:
# docs/administration/reverse-proxies.md
2026-04-14 16:09:39 +08:00
silverwind
128cbae023
Sync zh-cn/zh-tw config cheat sheet with English ( #381 )
...
Sync the zh-cn and zh-tw `config-cheat-sheet.md` translations with the English source for current and 1.26 versions.
Changes:
- Add 17 missing sections (`qos`, `mailer.override_header`, `markup.external-render-name`, `lfs_client`, `storage_minio`, `storage_azureblob`, `storage_override`, and 10 cron task subsections including the `Actions` cron tasks group)
- Add ~30 missing individual settings across existing sections
- Restructure storage sections to match English (separate Minio/Azure/Override subsections)
- Remove stale settings (`TEST_CONFLICTING_PATCHES_WITH_GIT_APPLY`, old inline MINIO duplicates, removed git timeout settings)
- Fix `MERMAID_MAX_SOURCE_CHARACTERS` default value (5000 -> 50000)
- Replace full-width Unicode punctuation (U+FF1A, U+FF08, U+FF09) with ASCII equivalents
All 4 i18n files now have 745 settings matching the English source.
---
This PR was written with the help of Claude Opus 4.6
Reviewed-on: https://gitea.com/gitea/docs/pulls/381
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-committed-by: silverwind <me@silverwind.io >
2026-04-10 17:39:20 +00: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
Lunny Xiao
a7ab7af00f
Add v1.26 documentation ( #376 )
...
Co-authored-by: silverwind <2021+silverwind@noreply.gitea.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/376
Reviewed-by: silverwind <2021+silverwind@noreply.gitea.com >
2026-04-09 19:27:32 +00:00
Renovate Bot
b339770f3c
fix(deps): update dependency @mui/material to v9 ( #375 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/375
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-04-09 14:15:29 +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
Renovate Bot
c39f423da6
chore(deps): update pnpm to v10.33.0 ( #370 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/370
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-26 21:37:00 +00:00