-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
91 lines (83 loc) · 2.02 KB
/
mkdocs.yml
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: "GH Action Reusable Workflows"
site_description: Documentation for GitHub Action resusable workflows
site_url: https://SINTEF.github.io/ci-cd
copyright: Copyright © 2022 Casper Welzel Andersen & SINTEF
theme:
name: material
palette:
scheme: default
primary: lime
accent: amber
icon:
repo: fontawesome/brands/github
logo: material/library-outline
favicon: assets/images/favicon.png
language: en
features:
- navigation.instant
- navigation.top
repo_name: "ci-cd"
repo_url: "https://github.com/SINTEF/ci-cd"
edit_uri: ""
extra:
social:
- icon: fontawesome/brands/square-github
link: https://github.com/SINTEF
name: "SINTEF on GitHub"
- icon: fontawesome/brands/github
link: https://github.com/CasperWA
name: "Casper Welzel Andersen on GitHub"
version:
provider: mike
default: latest
extra_css:
- css/reference.css
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.tabbed
- pymdownx.caret
- pymdownx.tilde
- pymdownx.keys
- toc:
permalink: true
plugins:
- search:
lang: en
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_root_heading: false
show_root_toc_entry: true
show_root_full_path: true
show_object_full_path: false
show_category_heading: false
show_if_no_docstring: false
show_source: true
show_bases: true
group_by_category: true
heading_level: 3
filters:
- "!^_[^_]"
members: null
docstring_style: google
- awesome-pages
nav:
- Home: index.md
- Workflows:
- Overview: workflows/index.md
- ... | flat | workflows/**
- Hooks:
- Overview: hooks/index.md
- ... | flat | hooks/**
- License: LICENSE.md
- Changelog: CHANGELOG.md
- Developers:
- ... | api_reference/**
watch:
- "ci_cd"