-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix dead docs links These have been broken for a while Signed-off-by: Tim Smith <[email protected]> * Spellcheck updates Signed-off-by: Tim Smith <[email protected]> * Add a link checker action Signed-off-by: Tim Smith <[email protected]> * Remove legacy docs entirely Signed-off-by: Tim Smith <[email protected]> --------- Signed-off-by: Tim Smith <[email protected]>
- Loading branch information
Showing
8 changed files
with
72 additions
and
103 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,6 +78,9 @@ | |
# s.b. email | ||
\be-mail\b | ||
|
||
# s.b. APIs | ||
\bapis\b | ||
|
||
# | ||
# Product Names | ||
# | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ on: | |
issue_comment: | ||
types: [created] | ||
pull_request_target: | ||
types: [opened,closed,synchronize] | ||
types: [opened, closed, synchronize] | ||
|
||
jobs: | ||
CLAssistant: | ||
|
@@ -14,13 +14,13 @@ jobs: | |
uses: contributor-assistant/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_ACCESS_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ACCESS_TOKEN }} | ||
with: | ||
path-to-signatures: 'signatures/version1/cla.json' | ||
path-to-document: 'https://github.com/mondoohq/.github/blob/master/CLA.md' | ||
custom-pr-sign-comment: 'I have read the Mondoo CLA Document and I hereby sign the CLA' | ||
custom-notsigned-prcomment: 'Thank you for your submission, we really appreciate it. Before we can accept your contribution, we ask that you sign the [Mondoo Contributor License Agreement](https://github.com/mondoohq/.github/blob/master/CLA.md). You can sign the CLA by adding a new comment to this pull request and pasting exactly the following text.' | ||
path-to-signatures: "signatures/version1/cla.json" | ||
path-to-document: "https://github.com/mondoohq/.github/blob/master/CLA.md" | ||
custom-pr-sign-comment: "I have read the Mondoo CLA Document and I hereby sign the CLA" | ||
custom-notsigned-prcomment: "Thank you for your submission. We really appreciate it. Before we can accept your contribution, we ask that you sign the [Mondoo Contributor License Agreement](https://github.com/mondoohq/.github/blob/master/CLA.md). You can sign the CLA by adding a new comment to this pull request and pasting exactly the following text." | ||
remote-repository-name: cla | ||
remote-organization-name: mondoohq | ||
branch: 'main' | ||
branch: "main" | ||
allowlist: mondoo-tools,github-actions[bot],dependabot[bot] |
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,19 @@ | ||
--- | ||
name: Link Checking | ||
|
||
"on": | ||
pull_request: | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
md-links: | ||
name: Run markdown link check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- name: markdown-link-check | ||
uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-verbose-mode: "yes" |
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