Skip to content

Commit

Permalink
Add automated review action (#42309)
Browse files Browse the repository at this point in the history
  • Loading branch information
cottsay authored Nov 20, 2024
1 parent 97cfb56 commit f83c437
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/reviewer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Automated review
on: # yamllint disable-line rule:truthy
pull_request:
types:
- opened
- ready_for_review
- reopened
- synchronize

permissions:
pull-requests: write

jobs:
automated_review:
name: Generate automated review
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ros-infrastructure/rosdistro-reviewer@main
with:
token: ${{ github.token }}

0 comments on commit f83c437

Please sign in to comment.