Add aioraven package to rosdep (key should end in -pip) #24
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
--- | |
name: Automated review | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- review_requested | |
permissions: | |
pull-requests: write | |
jobs: | |
automated_review: | |
name: Generate automated review | |
runs-on: ubuntu-latest | |
if: ${{ github.event.action != 'review_requested' || github.event.requested_reviewer.login == 'github-actions[bot]' }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: python3 -m pip install ./rosdistro_utils | |
- run: >- | |
python3 -m rosdistro_utils | |
${{ github.event.pull_request.base.sha }} | |
${{ github.event.pull_request.head.sha }} | |
${{ github.event.pull_request.number }} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |