Need option to turn off crash report that keeps popping up. This is a problem that will stop my use. 2. Terminated channel popup needs to be gone. Channels that are deleted come back sometimes. If I want to delete a subscription I'll do it myself. when I force stop the app it shouldnt start back up #29700
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: Image Minimizer | |
| on: | |
| issue_comment: | |
| types: [created, edited] | |
| issues: | |
| types: [opened, edited] | |
| pull_request: | |
| types: [opened, edited] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| try-minimize: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 16 | |
| - name: Install probe-image-size | |
| run: npm i probe-image-size@7.2.3 --ignore-scripts | |
| - name: Minimize simple images | |
| uses: actions/github-script@v7 | |
| timeout-minutes: 3 | |
| with: | |
| script: | | |
| const script = require('.github/workflows/image-minimizer.js'); | |
| await script({github, context}); |