Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ShenMian committed Jan 12, 2025
0 parents commit 97696e1
Show file tree
Hide file tree
Showing 364 changed files with 13,894 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.md linguist-documentation=false
*.md linguist-detectable
21 changes: 21 additions & 0 deletions .github/workflows/check_links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Check links

on:
push:
pull_request:
schedule:
- cron: "0 0 * * 0" # At 00:00 on Sunday

jobs:
check-links:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Check
uses: gaurav-nelson/[email protected]
with:
use-quiet-mode: "yes"
use-verbose-mode: "yes"
config-file: ".github/workflows/check_links_config.json"
25 changes: 25 additions & 0 deletions .github/workflows/check_links_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"ignorePatterns": [
{
"pattern": [
"https://www.ollydbg.de/version2.html",
"https://www.onlinegdb.com/",
"https://whoer.net/",
"https://store.nethunter.com/",
"https://www.microsoft.com/en-us/edge",
"https://www.epicgames.com/",
]
}
],
"httpHeaders": [
{
"urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/"],
"headers": {
"Accept-Encoding": "zstd, br, gzip, deflate"
}
}
],
"timeout": "20s",
"retryOn429": true,
"aliveStatusCodes": [200, 206]
}
20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Deploy
run: |
pip install mkdocs-material
mkdocs gh-deploy --force
Loading

0 comments on commit 97696e1

Please sign in to comment.