Skip to content

Commit 7a7b58f

Browse files
alxn4awaismirza92github-actions[bot]github-actions
authored
Added new mkdocs based documentation to the project (#261)
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]>
1 parent efbfd65 commit 7a7b58f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1766
-348
lines changed

.github/actions/people/action.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: 'Update People Action'
2+
description: 'Retrieves people information from GitHub, saves it in people.yaml and opens a PR'
3+
inputs:
4+
token:
5+
description: 'User token for accessing the GitHub API. Can be passed in using {{ secrets.GITHUB_TOKEN }}'
6+
required: true
7+
8+
runs:
9+
using: 'composite'
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: set up python
14+
uses: actions/setup-python@v4
15+
with:
16+
python-version: '3.12'
17+
18+
- name: install deps
19+
run: pip install -U PyGithub pyyaml pydantic pydantic-settings
20+
shell: bash
21+
22+
- name: update people
23+
run: python .github/actions/people/people.py
24+
shell: bash
25+
env:
26+
INPUT_TOKEN: ${{ inputs.token }}

0 commit comments

Comments
 (0)