-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
assign the team to dependabot updates (#300)
- Loading branch information
1 parent
29a6f47
commit 328b014
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Assign weekly release dependabot reviewer | ||
on: | ||
pull_request: | ||
branches: | ||
- "dependabot/*" | ||
types: | ||
- opened | ||
- ready_for_review | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
assign: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: assign dependency updates team to pull request | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
url: ${{ github.event.pull_request.html_url }} | ||
run: | | ||
gh pr edit "$url" --add-reviewer fiberplane/cli-devs-dependency-updates |