Michael Shick

Results 32 comments of Michael Shick

Excellent point. I think it might make more sense for me to use a more specific env var, to avoid any collisions. I'll get this sorted out soon. Thanks for...

It is not. This would ultimately just be markdown in the message itself, but we'd need some place to store the file. I've looked at the relevant APIs and it...

Ah, and as for advice — you might be able to cobble something together by uploading a file to a cloud provider, e.g., [S3 File Upload](https://github.com/marketplace/actions/s3-file-upload) and working out the...

I was looking into it, and it seems like I can use the artifact API to create and build valid artifact URLs. This would allow for a file to be...

@rvalitov Ah, good to see that and know it's somewhat useful. I did some extensive testing of the artifacts API, and unfortunately it doesn't allow for generating a link during...

Yeah, the one you linked to, https://github.com/gavv/pull-request-artifacts, works by writing back to the repo, as opposed to using GitHub's artifacts API. The difference is files being added to your repo...

Yes, like #93 the action should be made to sniff out large files and truncate to prevent failures. Out of curiosity, were you hoping to link this large file in...

@jasikpark I agree, that would be very helpful. The way I've handled that situation in the past is to use a workflow that updates the `main` branch `README.md` with the...

Interesting issue. I intend to address this by checking the message size and breaking the message into parts if we hit the limit. I'll make this behavior optional, the default...

You could try `pnpm --filter my_filter exec -- pnpm --silent my-script`