Skip to content

Commit

Permalink
deps: auto-assign reviewer for deps PRs (#3032)
Browse files Browse the repository at this point in the history
* deps: auto-assign reviewer for deps PRs

Co-authored-by: Daniel Weiße <[email protected]>
  • Loading branch information
burgerdev and daniel-weisse authored Apr 17, 2024
1 parent 35e19a4 commit 9b52ec4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/assign_reviewer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Assign Reviewer

on:
pull_request:
types: ["labeled"]

permissions:
pull-requests: write

jobs:
specific_review_requested:
runs-on: ubuntu-latest
if: ${{ github.event.label.name == 'dependencies'}}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Pick assignee
id: pick-assignee
uses: ./.github/actions/pick_assignee
- name: Assign reviewer
env:
GH_TOKEN: ${{ github.token }}
PR: ${{ github.event.pull_request.number }}
ASSIGNEE: ${{ steps.pick-assignee.outputs.assignee }}
run: |
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
"/repos/edgelesssys/constellation/pulls/${PR}/requested_reviewers" \
-f "reviewers[]=${ASSIGNEE}"

0 comments on commit 9b52ec4

Please sign in to comment.