Commit graph

604 commits

Author SHA1 Message Date
8c651a91c7 Add guide to set branch to push to AGit pull request by default
(cherry picked from commit 5c634782b9)
2024-05-25 11:43:57 +00:00
e564335324 Docker installation detail fixes (#643)
Updates and fixes version descriptions for the latest Forgejo Docker image.

Reviewed-on: https://codeberg.org/forgejo/docs/pulls/643
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: adbagio <h759bkyo4@mozmail.com>
Co-committed-by: adbagio <h759bkyo4@mozmail.com>
(cherry picked from commit cd43c8b018)
2024-05-24 07:55:49 +00:00
4609582481 fix: SHOW_FOOTER_POWERED_BY is not available in v7.0 2024-05-22 14:27:00 +00:00
Victoria Nadasdi
b3a86302e2
add missing opts from v7.0.3
The week 2024-20-v7.0 cherry pick PR (#3772) added a fix that added a
new type option on the cli: "Fix missing migrate actions artifacts".

https://codeberg.org/forgejo/forgejo/src/branch/v7.0/forgejo/cmd/migrate_storage.go#L37

References:
- https://codeberg.org/forgejo/forgejo/pulls/3772
- https://codeberg.org/forgejo/forgejo/src/branch/v7.0/forgejo/cmd/migrate_storage.go#L37
2024-05-22 15:39:33 +02:00
Victoria Nadasdi
9a82bf41bc
fix: pin node packageManager
As packageManager is not pinned, `pnpm install --frozen-lockfile` will
install the latest version and adds it to the `package.json` file.

That makes PR checks fail because it checks if there are any changes
(`diff`) in the working directory as a step.
2024-05-22 15:06:57 +02:00
b630aedee0 developer: dependency: release notes example
(cherry picked from commit 8a28a4db15)
2024-05-16 21:15:24 +00:00
e2bd7bc8a6 developer: compiling requires go v1.22 not v1.21
(cherry picked from commit a09cea8876)
2024-05-16 21:11:09 +00:00
Crown0815
034a105374 Fix incorrect default value in CheatSheet for attachment MaxSize
I tested my forgejo instance and it says that it cannot upload files larger than 2048 MB.
I also confirmed on the gitea cheatsheet where the value is also 2048 MB
(see https://docs.gitea.com/administration/config-cheat-sheet#issue-and-pull-request-attachments-attachment)

(cherry picked from commit 720667cf04)
2024-05-16 21:07:36 +00:00
e619200f52 adds and updates hierarchy section
(cherry picked from commit f5b51da942)
2024-05-16 08:01:45 +00:00
0ko
8199991118 Localization: add instructions for fixing various failures with Weblate CL
(cherry picked from commit fb73fd507d)
2024-05-15 03:52:57 +00:00
922d9a91a3 Add Caddy config to reverse proxy section (#605)
Added Caddy example configs, turned on syntax highlighting in nginx/apache

Closes: forgejo/website#232
Reviewed-on: https://codeberg.org/forgejo/docs/pulls/605
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: TheFox0x7 <thefox0x7@gmail.com>
Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
(cherry picked from commit b6b99c0b55)
2024-05-14 23:08:12 +00:00
61beb1afcc Updates Contributing section of the README (#611)
Adds content to the Contributing section of the README.

Reviewed-on: https://codeberg.org/forgejo/docs/pulls/611
Reviewed-by: oliverpool <oliverpool@noreply.codeberg.org>
Co-authored-by: adbagio <h759bkyo4@mozmail.com>
Co-committed-by: adbagio <h759bkyo4@mozmail.com>
(cherry picked from commit a9beec6523)
2024-05-13 10:29:47 +00:00
jwildeboer
264447c0f1 Update Issue/PR Template doc (#609)
Preview: https://forgejo.codeberg.page/@docs_pull_609/docs/next/user/issue-pull-request-templates/#directory-names

Proposal based on https://codeberg.org/forgejo/docs/issues/607 to make the docs more readable and add the `.forgejo` directory. Also added the `ref` and `labels` options to the yaml example.

Reviewed-on: https://codeberg.org/forgejo/docs/pulls/609
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: jwildeboer <jwildeboer@noreply.codeberg.org>
Co-committed-by: jwildeboer <jwildeboer@noreply.codeberg.org>
(cherry picked from commit 784e395e97)
2024-05-12 18:43:47 +00:00
f0f8322943 admin(actions): the latest stable runner is 3.4.1
(cherry picked from commit 359caf8476)
2024-05-12 14:29:00 +00:00
Kwonunn
4db9cb08cd Reverse Proxy setup guide (#600)
I've added a more comprehensive guide to set up Reverse Proxies.

So far I've added nginx configuration, I'm also planning to add apache configuration later on.

Reviewed-on: https://codeberg.org/forgejo/docs/pulls/600
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: Kwonunn <kwonunnx@gmail.com>
Co-committed-by: Kwonunn <kwonunnx@gmail.com>
(cherry picked from commit c1b7969c1d)
2024-05-10 07:25:23 +00:00
cascading-pr
adec18c29d
cascading-pr update
(cherry picked from commit 42d4eeb926)
2024-05-10 08:38:57 +02:00
cascading-pr
b0e096dbaa
cascading-pr update
(cherry picked from commit ef11b41eb5)
2024-05-10 08:38:49 +02:00
faf25f747f developer(infrastructure): ubuntu-runner.forgejo.org
(cherry picked from commit 38c90ce5d6)
2024-05-07 13:00:25 +00:00
89966a10a5 developer: release: cut the documentation branch
- add a checklist to the release instructions
- use a pattern for push instead of an explicit list of branches
  it was previously advisable to avoid conflicts when there was
  no automated backports but it is no longer necessary

(cherry picked from commit 5acda1e0b2)
2024-05-07 10:56:17 +00:00
Yaroslav Halchenko
48ca2baa98 Add codespell support (without CI) and make it fix some typos (#536)
Per "request" of @0ko in https://codeberg.org/forgejo/forgejo/pulls/3270#issuecomment-1774032

TODOs
- postponed: how to add codespell (written in Python) to CI -- separate workflow? add to some other step? to some other tool/specification?

Reviewed-on: https://codeberg.org/forgejo/docs/pulls/536
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: Yaroslav Halchenko <debian@onerussian.com>
Co-committed-by: Yaroslav Halchenko <debian@onerussian.com>
(cherry picked from commit 9ad5f2ab0f)
2024-05-05 15:01:18 +00:00
0ko
537746e8a9 Fix dead links
(cherry picked from commit 4cba3d36b3)
2024-05-05 06:20:28 +00:00
OniriCorpe
2fd68bd1c2 Fix the 'Forgejo numbering scheme' link
(cherry picked from commit cd06bf37c5)
2024-05-03 08:48:54 +00:00
alydev
96c561f09f SSL note for minio storage, fixed dead link
(cherry picked from commit 0bfc31bd0a)
2024-05-01 11:36:47 +00:00
Earl Warren
1280915ffa Merge pull request '[Backport v7.0] Revert "Add rootless installation instructions"' (#574) from backport/v7.0/pr-573 into v7.0
Reviewed-on: https://codeberg.org/forgejo/docs/pulls/574
Reviewed-by: crystal <crystal@noreply.codeberg.org>
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
2024-04-28 21:10:45 +00:00
Earl Warren
88a8a9f734 Merge pull request '[Backport v7.0] admin: upgrade: drop issue.created when upgrading from gogs' (#575) from backport/v7.0/pr-567 into v7.0
Reviewed-on: https://codeberg.org/forgejo/docs/pulls/575
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
2024-04-28 20:44:58 +00:00
07865ed7ff admin: upgrade: drop issue.created when upgrading from gogs
Refs: https://codeberg.org/forgejo/forgejo/issues/3488
(cherry picked from commit d9c4a8bd18)
2024-04-28 20:39:12 +00:00
680cdd34b1 Revert "Add rootless installation instructions"
This reverts commit 345765e21f.

(cherry picked from commit bea94cd9bd)
2024-04-28 20:38:10 +00:00
Firepup650
b08aaf57c8 Fix a broken link
`[clean up job]../../admin/config-cheat-sheet/#cron---cleanup-expired-packages-croncleanup_packages)` -> `[clean up job](../../admin/config-cheat-sheet/#cron---cleanup-expired-packages-croncleanup_packages)`

(cherry picked from commit a1106f2fce)
2024-04-28 16:14:10 +00:00
Robin Kloppe
d39405ea95 Added Repo Mirros (#568)
In a next step https://codeberg.org/forgejo/forgejo/pulls/3503 can be merged

Reviewed-on: https://codeberg.org/forgejo/docs/pulls/568
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: Robin Kloppe <git@mainboarder.de>
Co-committed-by: Robin Kloppe <git@mainboarder.de>
(cherry picked from commit d9db0d13f6)
2024-04-28 08:59:42 +00:00
0ko
81c31abdd5 localization admin: add Weblate announcement
(cherry picked from commit bcd7348a70)
2024-04-24 15:29:23 +00:00
7acc15dbca LTS: is not part of the metadata & CLI updates (#561)
- LTS are listed in the table, no hint in the version number
- update the RC release names
- CLI updates

Reviewed-on: https://codeberg.org/forgejo/docs/pulls/561
Co-authored-by: Earl Warren <contact@earl-warren.org>
Co-committed-by: Earl Warren <contact@earl-warren.org>
(cherry picked from commit a0477a8300)
2024-04-23 15:59:39 +00:00
845378b29d docs: user: new section on comment on issues & PR via email
(cherry picked from commit cd3c76c05d)
2024-04-23 09:05:35 +00:00
f89d4d568d sync with Gitea e865de1e9d65dc09797d165a51c8e705d2a86030
cd docs
git diff d3982bcd814bac93e3cbce1c7eb749b17e413fbd..e865de1e9d65dc09797d165a51c8e705d2a86030 -- $(find . -type f -name '*en-us*')

(cherry picked from commit 6aa9b491a0)
2024-04-23 07:16:28 +00:00
f0b99af484
admin: cli: update 2024-04-23 07:19:30 +02:00
88bd56c31c meta: pnpm has a new format for lockfiles
Seem to be better to upgrade despite it being very new rather than
to pin pnpm.

(cherry picked from commit 88ea9f3a24)
2024-04-22 23:36:02 +00:00
Otto Richter
c06d726ecf Sync list of default themes
See https://codeberg.org/forgejo/forgejo/pulls/1746

(cherry picked from commit 7c8c649cc9)
2024-04-21 09:26:50 +00:00
46e5cf2f22 developer: release: octopuce is not publicly visible
(cherry picked from commit 06233a63cd)
2024-04-21 07:07:25 +00:00
05c3a5d43d developer: infrastructure: v7.next.forgejo.org
(cherry picked from commit 51a1f2951e)
2024-04-21 07:07:05 +00:00
0ko
f37365b4bc developer: update localization admin guides
(cherry picked from commit 82ab0bb31b)
2024-04-21 06:54:27 +00:00
crystal
11048364ab fix 404
(cherry picked from commit d58d729c58)
2024-04-21 05:47:27 +00:00
crystal
6045d15696
Update version number in index 2024-04-20 03:17:05 -06:00
726f8cb2bc
the v7.0 branch is cut
(cherry picked from commit c11ee8a32d)
2024-04-20 11:08:16 +02:00
crystal
71ce2ff514 timetzdata is in the release build tags
(cherry picked from commit bd8e4e588a)
2024-04-20 08:52:23 +00:00
c874343142
admin: cli: mssql is deprecated only in v7.0+ 2024-04-20 10:44:26 +02:00
e9523e7732 docs: pick the Forgejo release from experimental (#542)
in the case of a release that is not yet published, it will exist as
release candidates in the experimental organization. Every release go
through there and it is a reliable source.

Reviewed-on: https://codeberg.org/forgejo/docs/pulls/542
Reviewed-by: crystal <crystal@noreply.codeberg.org>
Co-authored-by: Earl Warren <contact@earl-warren.org>
Co-committed-by: Earl Warren <contact@earl-warren.org>
(cherry picked from commit 4ce64e2840)
2024-04-20 08:39:21 +00:00
396b73db5d developer: 7.0 pushed to 23 April 2024
Refs: https://matrix.to/#/!zpNKWqkiEOyljSMQDK:matrix.org/$NbJVQF3bOEMbfFbfq-IhydQPukQuHvsz3Vi6A2ozWCU?via=schinas.net&via=matrix.org&via=envs.net
2024-04-19 15:06:40 +00:00
crystal
34ab587e0f
replace gna.org links with archive.org mirrors
gna.org is apparently gone
2024-04-18 21:38:30 -06:00
d1662f520e developer: infrastructure: blacklist bots that do not obey robots.txt
They get /forgejo/forgejo/archive/100448a007707c049a769cb71cd170fcb5b64a25.bundle

despite https://code.forgejo.org/robots.txt having

Disallow: /*/*/archive/
Disallow: /*/*/archive/*.bundle
2024-04-15 10:38:55 +00:00
Christian Drexler
798fee5b11 small update to docker compose (quoted boolean, compose as module) (again) (#525)
Hi,
somehow I made a hash of the last PR #522 so it failed linting again. I hope it is ok now. Sorry for the noise!

Reviewed-on: https://codeberg.org/forgejo/docs/pulls/525
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: Christian Drexler <xunzi@noreply.codeberg.org>
Co-committed-by: Christian Drexler <xunzi@noreply.codeberg.org>
2024-04-14 12:31:01 +00:00
0ko
b4354d111a Developer: Base localization: add Contributing section 2024-04-11 14:43:22 +00:00