mirror of
https://github.com/fastapi/fastapi.git
synced 2026-06-24 07:20:45 -04:00
35 lines
739 B
YAML
35 lines
739 B
YAML
name: Issue Manager
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "13 22 * * *"
|
|
issue_comment:
|
|
types:
|
|
- created
|
|
issues:
|
|
types:
|
|
- labeled
|
|
pull_request_target: # zizmor: ignore[dangerous-triggers]
|
|
types:
|
|
- labeled
|
|
workflow_dispatch:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
issue-manager:
|
|
if: github.repository_owner == 'fastapi'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: Dump GitHub context
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: echo "$GITHUB_CONTEXT"
|
|
- uses: tiangolo/issue-manager@8505bda3fd28623a64d93935cbe13fa23f14fd8b # 0.7.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|