Add a workflow to create a PR to update smoke test templates roughly every minor version #21
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: Package Size Report | |
| on: | |
| pull_request: {} | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| pkg-size-report: | |
| name: Package Size Report | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup | |
| - uses: pkg-size/action@v1 | |
| with: | |
| build-command: "pnpm build" | |
| display-size: uncompressed, brotli | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |