mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

PR-URL: https://github.com/nodejs/node/pull/55606 Refs: https://openjs-foundation.slack.com/archives/C019Y2T6STH/p1730308054959239?thread_ts=1730296053.898089&cid=C019Y2T6STH Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
43 lines
1.7 KiB
YAML
43 lines
1.7 KiB
YAML
name: Notify on Review Wanted
|
|
on:
|
|
issues:
|
|
types: [labeled]
|
|
pull_request_target:
|
|
types: [labeled]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
notifyOnReviewWanted:
|
|
name: Notify on Review Wanted
|
|
if: github.repository == 'nodejs/node' && github.event.label.name == 'review wanted'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Determine PR or Issue
|
|
id: define-message
|
|
env:
|
|
TITLE_ISSUE: ${{ github.event.issue.title }}
|
|
TITLE_PR: ${{ github.event.pull_request.title }}
|
|
run: |
|
|
if [[ -n "${{ github.event.pull_request.number }}" ]]; then
|
|
number="${{ github.event.pull_request.number }}"
|
|
link="https://github.com/${{ github.repository }}/pull/$number"
|
|
echo "message=The PR (#$number) requires review from Node.js maintainers. See: $link" >> "$GITHUB_OUTPUT"
|
|
echo "title=$TITLE_PR" >> "$GITHUB_OUTPUT"
|
|
else
|
|
number="${{ github.event.issue.number }}"
|
|
link="https://github.com/${{ github.repository }}/issues/$number"
|
|
echo "message=The issue (#$number) requires review from Node.js maintainers. See: $link" >> "$GITHUB_OUTPUT"
|
|
echo "title=$TITLE_ISSUE" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
- name: Slack Notification
|
|
uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 # 2.3.0
|
|
env:
|
|
SLACK_COLOR: '#3d85c6'
|
|
SLACK_ICON: https://github.com/nodejs.png?size=48
|
|
SLACK_TITLE: ${{ steps.define-message.outputs.title }}
|
|
SLACK_MESSAGE: ${{ steps.define-message.outputs.message }}
|
|
SLACK_USERNAME: nodejs-bot
|
|
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|