From 2bdc15683acb34202eb020dbb0e7428f75c74b51 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 2 Nov 2025 08:16:32 -0500 Subject: [PATCH] ci(global-replicator): Fix workflow file name in replicator config Corrects the referenced workflow file from '_ci_node.yml' to '_ci-node.yml' in the global replicator workflow configuration. --- .github/workflows/__global-replicator.yml | 2 +- .github/workflows/_ci-node.yml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/__global-replicator.yml b/.github/workflows/__global-replicator.yml index 4f324197..a7f85300 100644 --- a/.github/workflows/__global-replicator.yml +++ b/.github/workflows/__global-replicator.yml @@ -223,7 +223,7 @@ jobs: committer_email: ${{ secrets.GH_BOT_EMAIL }} patterns_to_ignore: '' patterns_to_include: >- - .github/workflows/_ci_node.yml, + .github/workflows/_ci-node.yml, .github/workflows/_update-npm.yml topics_to_include: 'npm-pkg' exclude_forked: false diff --git a/.github/workflows/_ci-node.yml b/.github/workflows/_ci-node.yml index 87bf9e66..f0882d20 100644 --- a/.github/workflows/_ci-node.yml +++ b/.github/workflows/_ci-node.yml @@ -3,6 +3,10 @@ # Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in # the above-mentioned repo. +# To use, add the `npm-pkg` repository label to identify repositories that should trigger this workflow. + +# This will run standard CI for Node.js/npm/TypeScript projects. + name: CI-Node permissions: contents: write # required for release_setup action