diff --git a/action.yml b/action.yml index 110c796..0f6f67e 100644 --- a/action.yml +++ b/action.yml @@ -27,9 +27,9 @@ runs: fi # We don't want CMS Squad member PRs to clutter the project board echo "Author is $PR_AUTHOR" - for squad_member in 'GuySartorelli' 'emteknetnz'; do - if [[ $PR_AUTHOR == $squad_member ]]; then - echo "Author is in CMS Squad. Skipping." + for ignore_user in 'dependabot[bot]' 'github-actions[bot]' 'GuySartorelli' 'emteknetnz'; do + if [[ $PR_AUTHOR == $ignore_user ]]; then + echo "Author is in CMS Squad or is a bot user. Skipping." echo "should_add_to_project=false" >> $GITHUB_OUTPUT exit 0 fi