Open
Description
Hi ! 👋🏻
First of all, thank you for this amazing tool.
We have integrated it in our workflow using a Github Action to lint our RoR codebase following the wiki. However this action fails systematically for PRs opened by bots, for example dependabot.
We have found a workaround to avoid running this action whenever that is the case :
if: ${{ !contains(github.actor, '[bot]') }}
This could potentially be useful to anyone wanting to integrate Pronto in a GH action. WDYT about adding this to the wiki ? I'd be happy to do it !