Bump types-requests from 2.32.0.20250328 to 2.32.0.20250515 #172
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: YC Tracker | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - closed | |
| jobs: | |
| transition-task: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Move Task When PR Opened | |
| if: github.event.action != 'closed' | |
| uses: ./ | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| yandex_org_id: ${{ secrets.YANDEX_ORG_ID }} | |
| yandex_oauth2_token: ${{ secrets.YANDEX_OAUTH2_TOKEN }} | |
| task_url: true | |
| ignore: ERP-31,ERP-32 | |
| - name: Move Task When PR Merged | |
| if: github.event.pull_request.merged == true | |
| uses: ./ | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| yandex_org_id: ${{ secrets.YANDEX_ORG_ID }} | |
| yandex_oauth2_token: ${{ secrets.YANDEX_OAUTH2_TOKEN }} | |
| task_url: true | |
| ignore: ERP-31,ERP-32 |