⬆ Bump playwright from v1.58.2-noble to v1.61.1-noble in /frontend in the docker group across 1 directory #6874
Workflow file for this run
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: "21 17 * * *" | |
| 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 | |
| timeout-minutes: 5 | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| 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 }} |