Skip to content

Commit

Permalink
Merge branch 'main' into docstrings-description
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed Jan 13, 2024
2 parents abba7d2 + 2e459bb commit caa5cbe
Show file tree
Hide file tree
Showing 112 changed files with 4,928 additions and 2,670 deletions.
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 caa5cbe

Please sign in to comment.