Pascal

Results 79 comments of Pascal

Did you have a look at _all_ the events that triggered automerge-action runs? It might be that the build sends the "status" event and not "check_suite"

Yes, it doesn't have any types, see the usage example in the README: https://github.com/pascalgn/automerge-action#usage

From the README: >When the pull request is ready, it will automatically be merged. **The action will only wait for status checks that are marked as required in the branch...

Somehow those 2 screenshots don't match. If an action is marked as required in the branch protection rules, it should also be shown with a "Required" text in the status...

OK, then maybe the issue could be that the user "hospitalrunbot" you're using to run automerge-action maybe has admin rights on the repository and thus may bypass failed required checks?

This is already integrated: https://github.com/pascalgn/automerge-action/blob/master/lib/api.js#L73 It's also included in the list of supported events: https://github.com/pascalgn/automerge-action#supported-events

The workflow_run event is always triggered by this action (as all other actions). I've updated the README accordingly.

Yes, you need to configure that CI action to be triggered on `workflow_run`, I suppose. But this has nothing to do with the automerge action per se, so I cannot...

You should be able to set `UPDATE_LABELS: "disable"` (or some other value, basically a label that isn't used), which _should_ disable the update logic

I think the reason is that this action was created before GH added the "with" feature to actions. As far as I know, there is no reason to keep "env",...