Android TV: MainActivity destroyed/recreated on every Bluetooth remote reconnect (missing android:configChanges) β playback stops #869
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: Auto Label | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| concurrency: | |
| group: ${{ github.event.issue.number }} | |
| cancel-in-progress: true | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| label-issue: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Label issue | |
| uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| const script = require('./.github/scripts/auto-label.js'); | |
| await script({github, context}); |