Skip to content

Commit 5395c25

Browse files
jacoblee93github-actions
andauthored
πŸ‘₯ Update LangChain people data (langchain-ai#17743)
πŸ‘₯ Update LangChain people data --------- Co-authored-by: github-actions <github-actions@github.com>
1 parent a206d3c commit 5395c25

File tree

9 files changed

+3246
-1
lines changed

9 files changed

+3246
-1
lines changed

β€Ž.github/actions/people/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM python:3.9
2+
3+
RUN pip install httpx PyGithub "pydantic==2.0.2" pydantic-settings "pyyaml>=5.3.1,<6.0.0"
4+
5+
COPY ./app /app
6+
7+
CMD ["python", "/app/main.py"]

β€Ž.github/actions/people/action.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Adapted from https://github.com/tiangolo/fastapi/blob/master/.github/actions/people/action.yml
2+
name: "Generate LangChain People"
3+
description: "Generate the data for the LangChain People page"
4+
author: "Jacob Lee <jacob@langchain.dev>"
5+
inputs:
6+
token:
7+
description: 'User token, to read the GitHub API. Can be passed in using {{ secrets.LANGCHAIN_PEOPLE_GITHUB_TOKEN }}'
8+
required: true
9+
runs:
10+
using: 'docker'
11+
image: 'Dockerfile'

0 commit comments

Comments
Β (0)