-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/automated-graph-doc
- Loading branch information
Showing
585 changed files
with
40,091 additions
and
17,698 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
title: "Meeting minutes for XX.XX.2023" | ||
labels: ["minutes"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
This discussion contains the public minutes of the dev meeting conducted on the date in the title. | ||
It can be created ahead of time (ideally at least a week before) to fill the initial agenda and | ||
list of PRs to discuss. | ||
- type: textarea | ||
id: agenda | ||
attributes: | ||
label: Agenda | ||
description: "What is/was the general of the meeting?" | ||
value: | | ||
1. Open PRs | ||
2. | ||
3. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: prs | ||
attributes: | ||
label: Discussed PRs | ||
description: "Which PRs should be discussed / where discussed in the meeting?" | ||
value: | | ||
- [ ] # | ||
- [ ] # | ||
- [ ] # | ||
... | ||
validations: | ||
required: true | ||
|
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,47 @@ | ||
name: docs | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- docs/** | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
paths: | ||
- docs/** | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
if: github.event.repository.fork == false | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install python3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
key: ${{ github.ref }} | ||
path: .cache | ||
- name: Install Material for MkDocs | ||
run: | | ||
pip install mkdocs-material pillow cairosvg | ||
pip install -r docs/mkdocs-material-plugins.txt | ||
- name: Build | ||
run: cd docs && mkdocs build --clean --config-file mkdocs.yaml -d site -v | ||
- name: Publish main | ||
if: github.ref == 'refs/heads/main' | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: docs/site | ||
- name: Publish version | ||
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, 'beta') && !contains(github.ref, 'alpha') | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: docs/site | ||
clean-exclude: dokka/** |
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
Oops, something went wrong.