mirror of
https://codeberg.org/forgejo/docs.git
synced 2025-02-08 04:26:39 -05:00
fix minor stuff, move lychee.toml to .lychee.toml
This commit is contained in:
parent
fe44b624bd
commit
d520f407f5
6 changed files with 11 additions and 12 deletions
|
@ -17,14 +17,12 @@ jobs:
|
||||||
|
|
||||||
- name: Install lychee
|
- name: Install lychee
|
||||||
run: |
|
run: |
|
||||||
curl -sLO "https://github.com/lycheeverse/lychee/releases/download/v0.15.0/lychee-v0.15.0-x86_64-unknown-linux-gnu.tar.gz"
|
|
||||||
curl -sLO "https://github.com/lycheeverse/lychee/releases/download/lychee-v0.18.0/lychee-x86_64-unknown-linux-gnu.tar.gz"
|
curl -sLO "https://github.com/lycheeverse/lychee/releases/download/lychee-v0.18.0/lychee-x86_64-unknown-linux-gnu.tar.gz"
|
||||||
tar -xvzf "lychee-x86_64-unknown-linux-gnu.tar.gz"
|
tar -xvzf "lychee-x86_64-unknown-linux-gnu.tar.gz"
|
||||||
rm "lychee-x86_64-unknown-linux-gnu.tar.gz"
|
|
||||||
|
|
||||||
- name: Link Checker
|
- name: Link Checker
|
||||||
id: lychee
|
id: lychee
|
||||||
run: ./lychee docs v7/docs --format markdown
|
run: ./lychee --config .lychee.toml docs v7/docs
|
||||||
|
|
||||||
- name: Update issue
|
- name: Update issue
|
||||||
if: '!cancelled()'
|
if: '!cancelled()'
|
||||||
|
|
|
@ -24,7 +24,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
write_changes: true
|
write_changes: true
|
||||||
- name: check typos result
|
- name: check typos result
|
||||||
run: git diff --exit-code
|
run: 'git diff --exit-code --word-diff || ( echo "Hint: Fix misspelled words or add false positives in .typos.toml" && false )'
|
||||||
- name: scripts/cli-docs.sh
|
- name: scripts/cli-docs.sh
|
||||||
run: |
|
run: |
|
||||||
scripts/cli-docs.sh run ${{ env.GITHUB_BASE_REF }} > docs/admin/command-line.md
|
scripts/cli-docs.sh run ${{ env.GITHUB_BASE_REF }} > docs/admin/command-line.md
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
no_progress = true
|
no_progress = true
|
||||||
|
format = "markdown"
|
||||||
output = "report.md"
|
output = "report.md"
|
||||||
accept = ["200", "429"]
|
accept = ["200", "429"]
|
||||||
scheme = ["https", "http"]
|
scheme = ["https", "http"]
|
|
@ -501,7 +501,7 @@ curl -s -o /dev/null http://ipv6.google.com
|
||||||
|
|
||||||
To actually enable IPv6 with `forgejo-runner exec`, the flag `--enable-ipv6` must be provided. If you run this again with `forgejo-runner exec --enable-ipv6`, the job should succeed:
|
To actually enable IPv6 with `forgejo-runner exec`, the flag `--enable-ipv6` must be provided. If you run this again with `forgejo-runner exec --enable-ipv6`, the job should succeed:
|
||||||
|
|
||||||
```shell-session
|
```shellsession
|
||||||
$ forgejo-runner exec --enable-ipv6
|
$ forgejo-runner exec --enable-ipv6
|
||||||
...
|
...
|
||||||
[ipv6.yml/ipv6] ✅ Success - Main apt update; apt install --yes curl
|
[ipv6.yml/ipv6] ✅ Success - Main apt update; apt install --yes curl
|
||||||
|
|
|
@ -121,7 +121,7 @@ In this example https://v7.next.forgejo.org will be configured to add the option
|
||||||
|
|
||||||
1. Redirect the user to the authorization endpoint in order to get their consent for accessing the resources:
|
1. Redirect the user to the authorization endpoint in order to get their consent for accessing the resources:
|
||||||
|
|
||||||
```curl
|
```http
|
||||||
https://[YOUR-FORGEJO-URL]/login/oauth/authorize?client_id=CLIENT_ID&redirect_uri=REDIRECT_URI&response_type=code&state=STATE
|
https://[YOUR-FORGEJO-URL]/login/oauth/authorize?client_id=CLIENT_ID&redirect_uri=REDIRECT_URI&response_type=code&state=STATE
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -129,13 +129,13 @@ In this example https://v7.next.forgejo.org will be configured to add the option
|
||||||
|
|
||||||
The user will now be asked to authorize your application. If they authorize it, the user will be redirected to the `REDIRECT_URL`, for example:
|
The user will now be asked to authorize your application. If they authorize it, the user will be redirected to the `REDIRECT_URL`, for example:
|
||||||
|
|
||||||
```curl
|
```http
|
||||||
https://[REDIRECT_URI]?code=RETURNED_CODE&state=STATE
|
https://[REDIRECT_URI]?code=RETURNED_CODE&state=STATE
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Using the provided `code` from the redirect, you can request a new application and refresh token. The access token endpoint accepts POST requests with `application/json` and `application/x-www-form-urlencoded` body, for example:
|
2. Using the provided `code` from the redirect, you can request a new application and refresh token. The access token endpoint accepts POST requests with `application/json` and `application/x-www-form-urlencoded` body, for example:
|
||||||
|
|
||||||
```curl
|
```http
|
||||||
POST https://[YOUR-FORGEJO-URL]/login/oauth/access_token
|
POST https://[YOUR-FORGEJO-URL]/login/oauth/access_token
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -183,7 +183,7 @@ After you have generated this values, you can continue with your request.
|
||||||
|
|
||||||
1. Redirect the user to the authorization endpoint in order to get their consent for accessing the resources:
|
1. Redirect the user to the authorization endpoint in order to get their consent for accessing the resources:
|
||||||
|
|
||||||
```curl
|
```http
|
||||||
https://[YOUR-FORGEJO-URL]/login/oauth/authorize?client_id=CLIENT_ID&redirect_uri=REDIRECT_URI&response_type=code&code_challenge_method=CODE_CHALLENGE_METHOD&code_challenge=CODE_CHALLENGE&state=STATE
|
https://[YOUR-FORGEJO-URL]/login/oauth/authorize?client_id=CLIENT_ID&redirect_uri=REDIRECT_URI&response_type=code&code_challenge_method=CODE_CHALLENGE_METHOD&code_challenge=CODE_CHALLENGE&state=STATE
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -193,13 +193,13 @@ After you have generated this values, you can continue with your request.
|
||||||
|
|
||||||
The user will now be asked to authorize your application. If they authorize it, the user will be redirected to the `REDIRECT_URL`, for example:
|
The user will now be asked to authorize your application. If they authorize it, the user will be redirected to the `REDIRECT_URL`, for example:
|
||||||
|
|
||||||
```curl
|
```http
|
||||||
https://[REDIRECT_URI]?code=RETURNED_CODE&state=STATE
|
https://[REDIRECT_URI]?code=RETURNED_CODE&state=STATE
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Using the provided `code` from the redirect, you can request a new application and refresh token. The access token endpoint accepts POST requests with `application/json` and `application/x-www-form-urlencoded` body, for example:
|
2. Using the provided `code` from the redirect, you can request a new application and refresh token. The access token endpoint accepts POST requests with `application/json` and `application/x-www-form-urlencoded` body, for example:
|
||||||
|
|
||||||
```curl
|
```http
|
||||||
POST https://[YOUR-FORGEJO-URL]/login/oauth/access_token
|
POST https://[YOUR-FORGEJO-URL]/login/oauth/access_token
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ curl -X PUT \
|
||||||
|
|
||||||
First, you need to update your pacman configuration, adding following lines :
|
First, you need to update your pacman configuration, adding following lines :
|
||||||
|
|
||||||
```conf
|
```ini
|
||||||
[{owner}.{group}.{domain}]
|
[{owner}.{group}.{domain}]
|
||||||
SigLevel = Required
|
SigLevel = Required
|
||||||
Server = https://{domain}/api/packages/{owner}/arch/{group}/{architecture}
|
Server = https://{domain}/api/packages/{owner}/arch/{group}/{architecture}
|
||||||
|
|
Loading…
Add table
Reference in a new issue