-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
876 changed files
with
25,552 additions
and
24,015 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Set update schedule for GitHub Actions | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every weekday | ||
interval: "daily" |
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,32 @@ | ||
name: ❄️ Markdown Lint | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
markdownlint: | ||
name: 🍇 Markdown | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- name: 🚀 Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "18.x" | ||
- run: npm install -g markdownlint-cli@0.25.0 | ||
- run: markdownlint '**/*.md' --ignore node_modules | ||
yamllint: | ||
name: 🍏 YAML | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/setup-python@v4.1.0 | ||
with: | ||
python-version: "3.x" # Version range or exact version of a Python version to use, using SemVer's version range syntax | ||
architecture: "x64" # optional x64 or x86. Defaults to x64 if not specified | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install yamllint | ||
- name: 🧹 YAML Lint | ||
run: | | ||
yamllint . |
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,44 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Check broken links | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
# events but only for the master branch | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
schedule: | ||
# Run everyday at 9:00 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07) | ||
- cron: "0 5 * * *" | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
check: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "18" | ||
|
||
- name: markdown-link-check | ||
uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-quiet-mode: "yes" | ||
config-file: "checklink_config.json" | ||
max-depth: 3 | ||
|
||
- name: Archive Broken Links List | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: broken-links.json | ||
path: /brokenLinks.json | ||
retention-days: 5 |
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,35 @@ | ||
# MD013 Line length | ||
MD013: false | ||
|
||
# MD014 Dollar signs used before commands without showing output | ||
MD014: false | ||
|
||
# MD024 Multiple headings with the same content | ||
MD024: false | ||
|
||
# MD026/no-trailing-punctuation Trailing punctuation in heading | ||
MD026: false | ||
|
||
# MD029/ol-prefix Ordered list item prefix | ||
MD029: false | ||
|
||
# MD033/no-inline-html | ||
MD033: false | ||
|
||
# MD034/no-bare-urls | ||
MD034: false | ||
|
||
# MD040/fenced-code-language | ||
MD040: false | ||
|
||
# MD041/first-line-heading/first-line-h1 First line in file should be a top level heading | ||
MD041: false | ||
|
||
# MD036/emphasis used instead of a header | ||
MD036: false | ||
|
||
# MD037/no-space-in-emphasis Spaces inside emphasis markers | ||
MD037: false | ||
|
||
# MD046/Two formats of code blocks are allowed: fenced and indented | ||
MD046: false |
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,8 @@ | ||
--- | ||
|
||
extends: default | ||
|
||
rules: | ||
document-start: false | ||
line-length: false | ||
truthy: false |
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.