I want to automate issue transition based on GitHub actions.
e.g. When a commit is created -> move issue to In Progress.
However, commits can be created when issue is already in CodeReview status as well, and even On Production.
All my status transitions are global.
How can I limit this to look like that:
When a commit is created -> Check if issue is in To Do -> If Yes, move to In Progress, If No, don't transition
Thank you!