Skip to content

Commit

Permalink
assign the team to dependabot updates (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
mellowagain authored May 17, 2024
1 parent 29a6f47 commit 328b014
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/weekly_dependency_update.yml
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

0 comments on commit 328b014

Please sign in to comment.