Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new mkdocs based documentation to the project #261

Merged
merged 26 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d30a4f5
Manually rebasing mkdocs migration to latest, step 1
alxn4 Nov 5, 2024
54dc218
Added assets
alxn4 Nov 5, 2024
2128d17
Include old /docs page and linked documents
alxn4 Nov 11, 2024
d8dc5cb
Streamlined README & dedicated install, benchmark and contribute page…
alxn4 Nov 12, 2024
ebed1f7
added getml theme to tweaks. added social badges
alxn4 Nov 12, 2024
9af0dc7
adapted primary color for contrast, added appointment link
alxn4 Nov 12, 2024
1e17feb
fixing links
alxn4 Nov 12, 2024
87dbf78
fixing links in readme
alxn4 Nov 12, 2024
1ef2f00
fixing links in readme
alxn4 Nov 12, 2024
0547fd6
activating mkdocs workflow
alxn4 Nov 12, 2024
8b4a67f
Add pyproject.toml
awaismirza92 Nov 12, 2024
628213f
Add mkdocs.yaml
awaismirza92 Nov 12, 2024
3a31432
mkdocs update
alxn4 Nov 12, 2024
3822385
Add CNAME file for custom domain persistence
awaismirza92 Nov 12, 2024
f94c5fb
minor css tweaks
alxn4 Nov 12, 2024
7ac6e2e
minor tweak to readme and docs index
alxn4 Nov 14, 2024
4da0167
reorder navigation, small changes to readme toc, revert readme intro
alxn4 Nov 15, 2024
d4ae83e
adapted key feature section to initial list of design principles
alxn4 Nov 15, 2024
2e2b89f
added htmlproofer
alxn4 Nov 15, 2024
789822a
Incorporated feedback from patrick, exposed docs0readme as navigation…
alxn4 Nov 18, 2024
27d6091
pointing update people workflow to f/mkdocs
alxn4 Nov 19, 2024
6738f62
Update People information in documentation (#263)
github-actions[bot] Nov 19, 2024
a844b68
excluded 429 error in htmlproofer for github profile links to not thr…
alxn4 Nov 19, 2024
1e55b86
changed people base branch to main. ready to be merged.
alxn4 Nov 19, 2024
67a4abb
removed circular links in install.md
alxn4 Nov 19, 2024
4ba8eff
dropped anonymous_fields.md and nav entry
alxn4 Nov 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/actions/people/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: 'Update People Action'
description: 'Retrieves people information from GitHub, saves it in people.yaml and opens a PR'
inputs:
token:
description: 'User token for accessing the GitHub API. Can be passed in using {{ secrets.GITHUB_TOKEN }}'
required: true

runs:
using: 'composite'
steps:
- uses: actions/checkout@v4

- name: set up python
uses: actions/setup-python@v4
with:
python-version: '3.12'

- name: install deps
run: pip install -U PyGithub pyyaml pydantic pydantic-settings
shell: bash

- name: update people
run: python .github/actions/people/people.py
shell: bash
env:
INPUT_TOKEN: ${{ inputs.token }}
Loading
Loading