We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 794eca2 + 441e8df commit 27bf48dCopy full SHA for 27bf48d
.github/workflows/dependabot-assignments.yml
@@ -0,0 +1,17 @@
1
+name: Dependabot auto-assign reviewer
2
+on: pull_request
3
+
4
+permissions:
5
+ pull-requests: write
6
7
+jobs:
8
+ dependabot:
9
+ runs-on: ubuntu-latest
10
+ env:
11
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12
+ if: ${{ github.actor == 'dependabot[bot]' }}
13
+ steps:
14
+ - name: Assign team to PR
15
+ run: gh pr edit "$PR_URL" --add-reviewer "cmu-delphi/code-reviewers"
16
17
+ PR_URL: ${{github.event.pull_request.html_url}}
0 commit comments