Exclude dependabot PRs from project

This commit is contained in:
Quinn Casey 2022-08-11 10:03:37 -07:00
parent 4faff70b5d
commit 40ae184c4e

View File

@ -41,7 +41,7 @@ jobs:
permissions:
# write permission is required for autolabeler
pull-requests: write
if: github.event_name == 'pull_request_target' && (github.event.action == 'opened' || github.event.action == 'reopened')
if: github.event_name == 'pull_request_target' && (github.event.action == 'opened' || github.event.action == 'reopened') && github.event.pull_request.user.login != "dependabot"
steps:
- name: Set PR status to ${{ env.in_progress }}
uses: leonsteinhaeuser/project-beta-automations@v1.2.1