-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
91 lines (86 loc) · 2.63 KB
/
mkdocs.yml
File metadata and controls
91 lines (86 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
site_name: "workflow-kit"
site_description: "Comprehensive workflow documentation for modern development teams"
repo_url: https://github.com/workflow-kit/
repo_name: workflow-kit
theme:
name: material
logo: assets/images/logo.png
favicon: assets/images/logo.png
font:
text: Roboto
code: Roboto Mono
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.expand
- navigation.top
- content.tabs.link
- content.code.copy
- content.code.annotate
- search.highlight
- search.suggest
- search.share
palette:
- scheme: slate
primary: indigo
accent: cyan
toggle:
icon: material/brightness-7
name: Switch to light mode
- scheme: default
primary: indigo
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to dark mode
nav:
- Home: index.md
- Getting Started: getting-started.md
- Workflows:
- PR Auto-Labeler:
- Overview: workflows/pr-auto-labeler/index.md
- Quick Start: workflows/pr-auto-labeler/quick-start.md
- Configuration: workflows/pr-auto-labeler/configuration.md
- Rules Reference:
- Overview: workflows/pr-auto-labeler/rules/index.md
- Frontend & UI: workflows/pr-auto-labeler/rules/frontend.md
- Database: workflows/pr-auto-labeler/rules/database.md
- Environment & Config: workflows/pr-auto-labeler/rules/environment.md
- Testing: workflows/pr-auto-labeler/rules/testing.md
- Dependencies: workflows/pr-auto-labeler/rules/dependencies.md
- CI/CD & Infrastructure: workflows/pr-auto-labeler/rules/infrastructure.md
- Security: workflows/pr-auto-labeler/rules/security.md
- Code Semantics: workflows/pr-auto-labeler/rules/semantics.md
- PR Metadata: workflows/pr-auto-labeler/rules/meta.md
- Usage Examples: workflows/pr-auto-labeler/examples.md
- Troubleshooting: workflows/pr-auto-labeler/troubleshooting.md
markdown_extensions:
- admonition
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- attr_list
- md_in_html
- toc:
permalink: true
permalink_title: Link to this section
- tables
- footnotes
extra_css:
- stylesheets/extra.css
plugins:
- search
- mermaid2