pet server configure hangs in a filesystem-scan busy-loop on large workspaces → 30s timeout × 3 retries = ~90s 100% CPU (thermal shutdown on laptops)
#345
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 labels | |
| on: | |
| issues: | |
| types: [opened, reopened] | |
| env: | |
| TRIAGERS: '["karthiknadig","eleanorjboyd","anthonykim1"]' | |
| permissions: | |
| issues: write | |
| jobs: | |
| add-classify-label: | |
| name: "Add 'triage-needed' and remove assignees" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Actions | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| with: | |
| repository: 'microsoft/vscode-github-triage-actions' | |
| ref: stable | |
| path: ./actions | |
| persist-credentials: false | |
| - name: Install Actions | |
| run: npm install --production --prefix ./actions | |
| - name: "Add 'triage-needed' and remove assignees" | |
| uses: ./actions/python-issue-labels | |
| with: | |
| triagers: ${{ env.TRIAGERS }} | |
| token: ${{secrets.GITHUB_TOKEN}} |