fix: return background task from consume_and_break_on_interrupt to prevent GC #1796
Workflow file for this run
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: "Conventional Commits" | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| permissions: | |
| contents: read | |
| jobs: | |
| main: | |
| permissions: | |
| pull-requests: read | |
| statuses: write | |
| name: Validate PR Title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: semantic-pull-request | |
| uses: amannn/action-semantic-pull-request@v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| validateSingleCommit: false |