Skip to content

Commit

Permalink
Add Pydantic People Page (#8345)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions <github-actions@github.com>
  • Loading branch information
3 people committed Dec 15, 2023
1 parent 17faa91 commit 3f6724b
Show file tree
Hide file tree
Showing 8 changed files with 1,153 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/actions/people/action.yml
@@ -0,0 +1,24 @@
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.11'

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

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

0 comments on commit 3f6724b

Please sign in to comment.