Issue Manager / issue-manager (push) Has been cancelled
Build Docs / changes (push) Has been cancelled
Build Docs / langs (push) Has been cancelled
Build Docs / build-docs (push) Has been cancelled
Build Docs / docs-all-green (push) Has been cancelled
Conflict detector / main (push) Has been cancelled
Test Redistribute / test-redistribute (fastapi) (push) Has been cancelled
Test Redistribute / test-redistribute (fastapi-slim) (push) Has been cancelled
Test Redistribute / test-redistribute-alls-green (push) Has been cancelled
Test / lint (push) Has been cancelled
Test / test (pydantic-v1, 3.10) (push) Has been cancelled
Test / test (pydantic-v1, 3.11) (push) Has been cancelled
Test / test (pydantic-v1, 3.13) (push) Has been cancelled
Test / test (pydantic-v1, 3.8) (push) Has been cancelled
Test / test (pydantic-v1, 3.9) (push) Has been cancelled
Test / test (pydantic-v2, 3.10) (push) Has been cancelled
Test / test (pydantic-v2, 3.11) (push) Has been cancelled
Test / test (pydantic-v2, 3.12) (push) Has been cancelled
Test / test (pydantic-v2, 3.13) (push) Has been cancelled
Test / test (pydantic-v2, 3.14) (push) Has been cancelled
Test / test (pydantic-v2, 3.8) (push) Has been cancelled
Test / test (pydantic-v2, 3.9) (push) Has been cancelled
Test / coverage-combine (push) Has been cancelled
Test / check (push) Has been cancelled
Label Approved / label-approved (push) Has been cancelled
FastAPI People Contributors / job (push) Has been cancelled
FastAPI People Sponsors / job (push) Has been cancelled
Update Topic Repos / topic-repos (push) Has been cancelled
FastAPI People / job (push) Has been cancelled
Test / test (pydantic-v1, 3.12) (push) Has been cancelled
52 lines
1.6 KiB
YAML
52 lines
1.6 KiB
YAML
name: Issue Manager
|
||
|
||
on:
|
||
schedule:
|
||
- cron: "13 22 * * *"
|
||
issue_comment:
|
||
types:
|
||
- created
|
||
issues:
|
||
types:
|
||
- labeled
|
||
pull_request_target:
|
||
types:
|
||
- labeled
|
||
workflow_dispatch:
|
||
|
||
permissions:
|
||
issues: write
|
||
pull-requests: write
|
||
|
||
jobs:
|
||
issue-manager:
|
||
if: github.repository_owner == 'fastapi'
|
||
runs-on: ubuntu-latest
|
||
steps:
|
||
- name: Dump GitHub context
|
||
env:
|
||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||
run: echo "$GITHUB_CONTEXT"
|
||
- uses: tiangolo/issue-manager@0.6.0
|
||
with:
|
||
token: ${{ secrets.GITHUB_TOKEN }}
|
||
config: >
|
||
{
|
||
"answered": {
|
||
"delay": 864000,
|
||
"message": "Assuming the original need was handled, this will be automatically closed now. But feel free to add more comments or create new issues or PRs."
|
||
},
|
||
"waiting": {
|
||
"delay": 2628000,
|
||
"message": "As this PR has been waiting for the original user for a while but seems to be inactive, it's now going to be closed. But if there's anyone interested, feel free to create a new PR.",
|
||
"reminder": {
|
||
"before": "P3D",
|
||
"message": "Heads-up: this will be closed in 3 days unless there’s new activity."
|
||
}
|
||
},
|
||
"invalid": {
|
||
"delay": 0,
|
||
"message": "This was marked as invalid and will be closed now. If this is an error, please provide additional details."
|
||
}
|
||
}
|