I’m my current project we are using a lot the new Draft PRs, however we just move from Circle CI to Github Actions, everything is working fine except that the Actions are not being triggered when creating a Draft PR, I’m not sure if there is a special type for this event or if it should happen on PR opened
on:
push:
pull\_request:
types: ['reopened']
The reason because I don’t have opened
in the types is because, push
includes opening a PR, putting opened
in the PR types trigger the action twice.
Thanks in advance