You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 !
The text was updated successfully, but these errors were encountered:
We also have this issue. It requires us to restart the workflow which then passes. This is quite annoying since we require linting to pass before merging and this uses up 2 workflow runs to get it to pass.
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 !
The text was updated successfully, but these errors were encountered: