Squeezelite player "disconnected prematurely from stream" with local music files #307
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 Triage Bot | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| pull_request_target: | |
| types: [opened, edited] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| contents: read | |
| jobs: | |
| triage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout support repo | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install requests PyGithub anthropic | |
| - name: Run triage bot | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number || github.event.pull_request.number }} | |
| ISSUE_BODY: ${{ github.event.issue.body || github.event.pull_request.body }} | |
| ISSUE_TITLE: ${{ github.event.issue.title || github.event.pull_request.title }} | |
| IS_PULL_REQUEST: ${{ github.event_name == 'pull_request_target' }} | |
| REPOSITORY: ${{ github.repository }} | |
| PR_USER: ${{ github.event.pull_request.user.login }} | |
| run: | | |
| cd .github/scripts | |
| python triage_bot.py |