From 8cd8dadf7521ec8c431525eebb6c85ef861f0521 Mon Sep 17 00:00:00 2001 From: Khokan Sardar Date: Tue, 9 Jun 2026 12:02:49 +0530 Subject: [PATCH] Build/Test Tools: Replace the node20 first-time contributor action. `wow-actions/welcome` is the only GitHub Action still running on the deprecated Node.js 20 runtime, and it has no release targeting Node.js 24. Switch to GitHub's official `actions/first-interaction` action, which runs on Node.js 24 and posts a comment on a contributor's first pull request. This removes the final node20 dependency from CI while keeping the welcome message intact. Fixes #65432. --- .github/workflows/pull-request-comments.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request-comments.yml b/.github/workflows/pull-request-comments.yml index da30e2feb7f11..ca1334fdb2db6 100644 --- a/.github/workflows/pull-request-comments.yml +++ b/.github/workflows/pull-request-comments.yml @@ -30,11 +30,10 @@ jobs: if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name == 'pull_request_target' }} steps: - name: Post a welcome comment - uses: wow-actions/welcome@68019c2c271561f63162fea75bb7707ef8a02c85 # v1.3.1 + uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3.1.0 with: - FIRST_PR_REACTIONS: 'hooray' - FIRST_PR_COMMENT: > - Hi @{{ author }}! 👋 + pr_message: > + Hi there! 👋 Thank you for your contribution to WordPress! 💖