Add Strawberry Django compatibility workflow #6043
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: # zizmor: ignore[dangerous-triggers] | |
| types: | |
| - labeled | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| issue-manager: | |
| if: github.repository_owner == 'strawberry-graphql' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: tiangolo/issue-manager@dc846170c36eb62fb434b3d943b36399fe240fb5 # 0.8.1 | |
| 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! 馃槉" | |
| }, | |
| "maybe-ai": { | |
| "delay": 0, | |
| "message": "This was marked as potentially AI generated and will be closed now. If this is an error, please provide additional details, make sure to read the docs about contributing and AI." | |
| } | |
| } |