Peter Evans
Peter Evans
I'm closing this now because this isn't really an issue with the action, it's just a bit of misunderstanding about how the action works.
Hi @dmzeus It's probably because the `commend-id` value is empty or null. Check that there is a value being supplied by `env.NODE_ID`. See the logic here: https://github.com/peter-evans/create-or-update-comment/blob/8da4c50e7142257262c9df90da4e74a59068c038/src/main.ts#L59-L69
Please could you explain your problem in more detail, preferably with examples. My current recommendation is to use a matrix, [as described in the readme](https://github.com/peter-evans/repository-dispatch#dispatch-to-multiple-repositories). Could you explain why that...
I'm still not sure why this cannot be done with a matrix. The matrix can just have an array of event types. Additionally, I'm not sure that the [limitation you...
Is this happening consistently, or just occasionally?
> However, I do see it when I use this action in a pull_request workflow that runs pull requests from forked repositories to the main repository. Github has a security...
Hi @jjICP This request has come up multiple times in the past. There's some discussion and a possible solution that might help you in this one: https://github.com/peter-evans/repository-dispatch/issues/260#issuecomment-1719861720
Thank you for reporting this. I've released a fix for this in `v7.0.1` / `v7`. https://github.com/peter-evans/create-pull-request/releases/tag/v7.0.1 I'm going to keep this issue open for now because the "fix" is more...
@vparmeland Your issue is different. It's caused because you are trying the create the pull request branch with `git checkout -b "$BRANCH_NAME"`. You don't need to do that, just make...
By locally, I mean make the changes during the workflow on the runner. Don't try and create the branch yourself, or use a remote branch, the action will create and...