fix: ♻️ Make Attachment.save clearer by expliciting that chunksize is non-null #3250
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: "Pull Request Checks" | |
| on: | |
| workflow_dispatch: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, edited] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: write-all | |
| jobs: | |
| pr-dependencies: | |
| runs-on: ubuntu-latest | |
| name: "Check PR Dependencies" | |
| steps: | |
| - name: PR Dependency Check | |
| uses: gregsdennis/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| semantic-title: | |
| name: "Check Semantic Title" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Check Semantic Pull Request" | |
| uses: amannn/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |