In a repository we have :
a workflow that runs
on: pull_request
so it runs each time I open/ commit to the pull-request (which I opened)we have an action (runs manually) that commits to the pull-request (updating some files in the branch)
when the second action finishes to run, I can see its commit on the pull request but it doesn't trigger the first workflow to run again (in order to run the workflow after the action's commit, I need each time to insert a dummy commit or close and re-open the pull-request) Is there another way to trigger the first workflow after a "bot" from the 2nd github action commits?