Skip to content

Commit

Permalink
chore: auto assign PRs to me
Browse files Browse the repository at this point in the history
Uses kentaro-m/[email protected] to automatically set me as a reviewer for dependabot PRs
I figure thats a little less invasive than assigned. Though its probably just the same
  • Loading branch information
beauraines committed Jun 22, 2024
1 parent 934722a commit 8d120be
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Set to true to add reviewers to pull requests
addReviewers: true

# Set to true to add assignees to pull requests
addAssignees: false

reviewers: beauraines
assign-yourself: false
14 changes: 14 additions & 0 deletions .github/workflows/auto-assign-PR.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Auto-assign reviewers for Dependabot PRs

on:
pull_request:
types: [opened, reopened]

jobs:
assign-reviewers:
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
runs-on: ubuntu-latest
steps:
- name: Assign reviewers
uses: kentaro-m/[email protected]

0 comments on commit 8d120be

Please sign in to comment.