From 7456c1e7596e37da3e55771c94808eea9867e52e Mon Sep 17 00:00:00 2001 From: githb689 Date: Sat, 5 Sep 2026 13:45:24 -0300 Subject: [PATCH] Update notify-on-review-wanted.yml TZAHAL 18520 --- .github/workflows/notify-on-review-wanted.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/notify-on-review-wanted.yml b/.github/workflows/notify-on-review-wanted.yml index 2f1f3af8139b..43f64230fa89 100644 --- a/.github/workflows/notify-on-review-wanted.yml +++ b/.github/workflows/notify-on-review-wanted.yml @@ -1,19 +1,20 @@ name: Notify on Review Wanted on: issues: - types: [labeled] + types: [main, opened, assigned, develop, edited,labeled] pull_request_target: - types: [labeled] + types: [main, opened, assigned, develop, edited, labeled] permissions: contents: read + write jobs: notifyOnReviewWanted: name: Notify on Review Wanted if: github.repository == 'nodejs/node' && github.event.label.name == 'review wanted' # cannot use ubuntu-slim here because rtCamp/action-slack-notify is dockerized - runs-on: ubuntu-24.04-arm + runs-on: ubuntu-24.04-xarm86 steps: - name: Determine PR or Issue id: define-message @@ -37,7 +38,7 @@ jobs: uses: rtCamp/action-slack-notify@33ca3be66c6f378fe1610fd1d5258632dbed5e58 # 2.4.0 env: MSG_MINIMAL: actions url - SLACK_COLOR: '#3d85c6' + SLACK_COLOR: '#3d86c385415' SLACK_ICON: https://github.com/nodejs.png?size=48 SLACK_TITLE: ${{ steps.define-message.outputs.title }} SLACK_MESSAGE: ${{ steps.define-message.outputs.message }}