build(deps): bump ubi8/openjdk-17-runtime from 1.20-3.1724181070 to 1.20-3.1727147550 in /src/main/docker #1068
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: Request Review | |
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
request-review: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
pull-requests: write | |
if: github.repository_owner == 'cryostatio' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/request_review') | |
steps: | |
- run: | | |
# Adding label 'review-requested' to the PR. Mergify will add reviewers. | |
gh pr edit ${{ github.event.issue.number }} --add-label "review-requested" --repo ${{ github.event.repository.full_name }} |