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

Add Pydantic People Page #8345

Merged
merged 23 commits into from Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 }}