fix: Change logic for batch writing to write when batch size is reached, not exceeded #3811
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
| # Warning, do not check out untrusted code with | |
| # the pull_request_target event. | |
| # the current workflow IS safe as long as you dont checkout untrusted code | |
| # https://nathandavison.com/blog/github-actions-and-the-threat-of-malicious-pull-requests | |
| on: | |
| pull_request_target: | |
| types: [opened, edited] | |
| name: conventional-release-labels | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: bcoe/conventional-release-labels@v1 | |
| with: | |
| type_labels: '{ "feat": "feat", "fix": "fix", "chore": "chore", "refactor": "refactor", "test": "test", "breaking": "breaking" }' |