Installing a fresh DB file leaves the old -wal/-shm behind — SQLite replays the stale WAL over the new file #180
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 area labeler | |
| # Adds area labels to new/edited issues based on keyword regexes in | |
| # .github/issue-labeler.yml. Additive only (sync-labels off): it never | |
| # removes a label a maintainer set by hand. Base bug/enhancement labels | |
| # already come from the issue forms. | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| permissions: | |
| contents: read | |
| jobs: | |
| triage: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: github/issue-labeler@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4 | |
| with: | |
| configuration-path: .github/issue-labeler.yml | |
| enable-versioned-regex: 0 | |
| include-title: 1 | |
| include-body: 1 | |
| sync-labels: 0 | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |