schema-codegen generates nullable @strawberry.input fields as required (missing Python default), causing __init__() missing required keyword-only argument for {} inputs #3846
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Issue Manager | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| issue_comment: | |
| types: | |
| - created | |
| issues: | |
| types: | |
| - labeled | |
| pull_request_target: | |
| types: | |
| - labeled | |
| workflow_dispatch: | |
| jobs: | |
| issue-manager: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: tiangolo/issue-manager@2fb3484ec9279485df8659e8ec73de262431737d # 0.6.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| config: > | |
| { | |
| "info-needed": { | |
| "delay": "P14D", | |
| "message": "Hi, this issue requires extra info to be actionable. We're closing this issue because it has not been actionable for a while now. Feel free to provide the requested information and we'll happily open it again! 😊" | |
| } | |
| } |