-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v3: Add support for consistent documentation using markdownlint (#3064)
* Add support for consistent documentation using markdownlint * Only run workflow during changes to markdown files * Fix more inconsistencies * Fixes to markdown under .github/ * More fixes * Apply suggestions from code review Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Fix typo in limiter docs * Add missing space before code-block * Add check for dead-links * Add write-good * Remove legacy README files * Fix glob for skipping .md files * Use paths-ignore instead --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c579a1a
commit 9463a8f
Showing
72 changed files
with
2,017 additions
and
1,905 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
4. [Incident Response Process](#process) | ||
|
||
<a name="versions"></a> | ||
|
||
## Supported Versions | ||
|
||
The table below shows the supported versions for Fiber which include security updates. | ||
|
@@ -16,6 +17,7 @@ The table below shows the supported versions for Fiber which include security up | |
| < 1.12.6 | :x: | | ||
|
||
<a name="reporting"></a> | ||
|
||
## Reporting security problems to Fiber | ||
|
||
**DO NOT CREATE AN ISSUE** to report a security problem. Instead, please | ||
|
@@ -24,6 +26,7 @@ send us an e-mail at `[email protected]` or join our discord server via | |
to Fenny or any of the maintainers. | ||
|
||
<a name="contact"></a> | ||
|
||
## Security Point of Contact | ||
|
||
The security point of contact is [Fenny](https://github.com/Fenny). Fenny responds | ||
|
@@ -35,6 +38,7 @@ of contact are any of the [@maintainers](https://github.com/orgs/gofiber/teams/m | |
The maintainers are the only other persons with administrative access to Fiber's source code. | ||
|
||
<a name="process"></a> | ||
|
||
## Incident Response Process | ||
|
||
In case an incident is discovered or reported, we will follow the following | ||
|
@@ -73,4 +77,4 @@ for all of it's members. | |
We learn about critical software updates and security threats from these sources | ||
|
||
1. GitHub Security Alerts | ||
2. GitHub: https://status.github.com/ & [@githubstatus](https://twitter.com/githubstatus) | ||
2. GitHub: <https://status.github.com/> & [@githubstatus](https://twitter.com/githubstatus) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: markdownlint | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
paths: | ||
- "**/*.md" | ||
pull_request: | ||
paths: | ||
- "**/*.md" | ||
|
||
jobs: | ||
markdownlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Fetch Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run markdownlint-cli2 | ||
uses: DavidAnson/markdownlint-cli2-action@v16 | ||
with: | ||
globs: | | ||
**/*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.