File tree Expand file tree Collapse file tree 3 files changed +54
-0
lines changed
Expand file tree Collapse file tree 3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ # Documentation
3+ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
4+ version : 2
5+ updates :
6+ - package-ecosystem : github-actions
7+ directory : /
8+ schedule :
9+ interval : monthly
Original file line number Diff line number Diff line change 1+ ---
2+ name : Publish docs via GitHub Pages
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ jobs :
9+ build :
10+ name : Deploy docs
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout master
14+ uses : actions/checkout@v4
15+
16+ - name : Deploy docs
17+ uses : mhausenblas/mkdocs-deploy-gh-pages@master
18+ env :
19+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ ---
2+ name : Validation
3+
4+ on :
5+ push :
6+ branches : [main]
7+ pull_request :
8+ branches : ['*']
9+
10+ concurrency :
11+ group : ${{ github.workflow }}-${{ github.ref }}
12+ cancel-in-progress : true
13+
14+ jobs :
15+ # Check for common misspellings
16+ codespell :
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v4
20+ - uses : codespell-project/actions-codespell@master
21+
22+ markdown-link-check :
23+ runs-on : ubuntu-latest
24+ steps :
25+ - uses : actions/checkout@v4
26+ - uses : gaurav-nelson/github-action-markdown-link-check@v1
You can’t perform that action at this time.
0 commit comments