Sebastián Ramírez
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
3 additions and
8 deletions
-
.github/actions/people/action.yml
-
.github/actions/people/app/main.py
-
.github/workflows/people.yml
|
@ -3,10 +3,7 @@ description: "Generate the data for the FastAPI People page" |
|
|
author: "Sebastián Ramírez <[email protected]>" |
|
|
author: "Sebastián Ramírez <[email protected]>" |
|
|
inputs: |
|
|
inputs: |
|
|
token: |
|
|
token: |
|
|
description: 'User token, to read the GitHub API. Can be passed in using {{ secrets.ACTION_TOKEN }}' |
|
|
description: 'User token, to read the GitHub API. Can be passed in using {{ secrets.FASTAPI_PEOPLE }}' |
|
|
required: true |
|
|
|
|
|
standard_token: |
|
|
|
|
|
description: 'Default GitHub Action token, used for the PR. Can be passed in using {{ secrets.GITHUB_TOKEN }}' |
|
|
|
|
|
required: true |
|
|
required: true |
|
|
runs: |
|
|
runs: |
|
|
using: 'docker' |
|
|
using: 'docker' |
|
|
|
@ -352,7 +352,6 @@ class SponsorsResponse(BaseModel): |
|
|
|
|
|
|
|
|
class Settings(BaseSettings): |
|
|
class Settings(BaseSettings): |
|
|
input_token: SecretStr |
|
|
input_token: SecretStr |
|
|
input_standard_token: SecretStr |
|
|
|
|
|
github_repository: str |
|
|
github_repository: str |
|
|
httpx_timeout: int = 30 |
|
|
httpx_timeout: int = 30 |
|
|
|
|
|
|
|
@ -609,7 +608,7 @@ if __name__ == "__main__": |
|
|
logging.basicConfig(level=logging.INFO) |
|
|
logging.basicConfig(level=logging.INFO) |
|
|
settings = Settings() |
|
|
settings = Settings() |
|
|
logging.info(f"Using config: {settings.json()}") |
|
|
logging.info(f"Using config: {settings.json()}") |
|
|
g = Github(settings.input_standard_token.get_secret_value()) |
|
|
g = Github(settings.input_token.get_secret_value()) |
|
|
repo = g.get_repo(settings.github_repository) |
|
|
repo = g.get_repo(settings.github_repository) |
|
|
question_commentors, question_last_month_commentors, question_authors = get_experts( |
|
|
question_commentors, question_last_month_commentors, question_authors = get_experts( |
|
|
settings=settings |
|
|
settings=settings |
|
|
|
@ -27,5 +27,4 @@ jobs: |
|
|
limit-access-to-actor: true |
|
|
limit-access-to-actor: true |
|
|
- uses: ./.github/actions/people |
|
|
- uses: ./.github/actions/people |
|
|
with: |
|
|
with: |
|
|
token: ${{ secrets.ACTIONS_TOKEN }} |
|
|
token: ${{ secrets.FASTAPI_PEOPLE }} |
|
|
standard_token: ${{ secrets.FASTAPI_PEOPLE }} |
|
|
|
|
|