Thinc 9.1.1 failed to update #1025
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: Explosion Bot | |
| on: | |
| issue_comment: | |
| types: | |
| - created | |
| - edited | |
| jobs: | |
| explosion-bot: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 | |
| - name: Install and run explosion-bot | |
| run: | | |
| git config --global url."https://x-access-token:${EXPLOSIONBOT_TOKEN}@github.com/".insteadOf "https://github.com/" | |
| pip install git+https://github.com/explosion/explosion-bot@da93b7c284cc002c63218de7e0e82610e47ced91 | |
| python -m explosionbot | |
| env: | |
| EXPLOSIONBOT_TOKEN: ${{ secrets.EXPLOSIONBOT_TOKEN }} | |
| INPUT_TOKEN: ${{ secrets.EXPLOSIONBOT_TOKEN }} | |
| INPUT_BK_TOKEN: ${{ secrets.BUILDKITE_SECRET }} | |
| ENABLED_COMMANDS: "test_gpu,test_slow,test_slow_gpu" | |
| ALLOWED_TEAMS: "spacy-maintainers" |