When using a slash_command, I have noticed it will run very briefly on any PR comment that is not /refresh.
It seems to run on all PR comments but then very quickly determines there is no /refresh in the comment and will stop.
Is there anyway to prevent that, as it's creating lots of noise in the repos when looking at the actions of workflows, by triggering then stopping that are just triggered by someone commenting on a PR.
slash_command:
name: ["refresh"]
events: [pull_request_comment, pull_request_review_comment]
When using a
slash_command, I have noticed it will run very briefly on any PR comment that is not/refresh.It seems to run on all PR comments but then very quickly determines there is no
/refreshin the comment and will stop.Is there anyway to prevent that, as it's creating lots of noise in the repos when looking at the actions of workflows, by triggering then stopping that are just triggered by someone commenting on a PR.