Relax sqlalchemy version pin and add pre-release test workflow #7468
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: "13 18 * * *" | |
| 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@dc846170c36eb62fb434b3d943b36399fe240fb5 # 0.8.1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |