Skip to content

Update scooby requirement from <0.10.0,>=0.5.1 to >=0.5.1,<0.11.0 #7497

Update scooby requirement from <0.10.0,>=0.5.1 to >=0.5.1,<0.11.0

Update scooby requirement from <0.10.0,>=0.5.1 to >=0.5.1,<0.11.0 #7497

Workflow file for this run

name: Approve PRs
on:
workflow_dispatch:
issue_comment:
types: [created]
jobs:
autoapprove:
# This job only runs for pull request comments by approved users on creation
name: PR comment
if: github.event.issue.pull_request &&
contains(github.event.comment.body, '@pyvista-bot LGTM') && (
github.event.comment.user.login == 'banesullivan' ||
github.event.comment.user.login == 'tkoyama010' ||
github.event.comment.user.login == 'akaszynski'
)
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: hmarr/auto-approve-action@v4
with:
review-message: ":white_check_mark: Approving this PR because [${{ github.event.comment.user.login }}](https://github.com/${{ github.event.comment.user.login }}) said so in [here](${{ github.event.comment.html_url }}) :shipit:"
pull-request-number: ${{ github.event.issue.number }}
github-token: ${{ secrets.PYVISTA_BOT_TOKEN }}