ENH: Update download_all_regression to use extended TSER 2024 archive #5048
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 comment posted | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| self-assign: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| sparse-checkout: .github/utilities | |
| - name: Setup Python 3.12 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install PyGithub | |
| run: pip install -Uq PyGithub | |
| - name: Create app token | |
| uses: actions/create-github-app-token@v2 | |
| id: app-token | |
| with: | |
| app-id: ${{ vars.PR_APP_ID }} | |
| private-key: ${{ secrets.PR_APP_KEY }} | |
| - name: Assign issue | |
| run: python .github/utilities/issue_assign.py | |
| env: | |
| CONTEXT_GITHUB: ${{ toJson(github) }} | |
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} |