certbot/.github/workflows/review_requested.yaml
Alexis 792a3a75a4
Change parameter scope in workflows
Signed-off-by: Alexis <lxshancock@gmail.com>
2025-10-15 14:11:14 +09:00

16 lines
601 B
YAML

name: Review Requested
on:
pull_request:
types: [review_requested]
jobs:
send-mattermost-message:
# Don't notify for the interim step of certbot/eff-devs being assigned
if: ${{ github.event.requested_reviewer.login != ''}}
runs-on: ubuntu-latest
steps:
- uses: mattermost/action-mattermost-notify@master
with:
MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_ASSIGN_WEBHOOK }}
TEXT: >
Review requested from ${{ github.event.requested_reviewer.login }} for "${{ github.event.pull_request.title }}": ${{ github.event.pull_request.html_url }}