stdout truncated at 64KB/128KB/256KB boundary when using saved process.stdout.write after override
#3978
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 Assign Types Issues | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| auto-assign: | |
| runs-on: ubuntu-latest | |
| if: github.event.label.name == 'types' | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Assign to alii | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_REPO: ${{ github.repository }} | |
| run: | | |
| gh issue edit ${{ github.event.issue.number }} --add-assignee alii |