Skip to content

Commit

Permalink
Added new mkdocs based documentation to the project (#261)
Browse files Browse the repository at this point in the history
Co-authored-by: Awais Mirza <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
4 people authored Nov 19, 2024
1 parent efbfd65 commit 7a7b58f
Show file tree
Hide file tree
Showing 42 changed files with 1,766 additions and 348 deletions.
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

0 comments on commit 7a7b58f

Please sign in to comment.