From b72dc7f2c4f11b1b455a1ae8d0d6c8486caef335 Mon Sep 17 00:00:00 2001 From: Ruslan Lesiutin Date: Thu, 2 Mar 2023 03:55:51 -0800 Subject: [PATCH] fix: update publishing packages tag message prefix (#36348) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/36348 Changelog: [Internal] Turns out that Phabricator strips `@` symbol from `@...` tags when exports commits to GitHub. Proposing to use `#` instead. #publish-packages-to-npm Reviewed By: cortinico Differential Revision: D43712415 fbshipit-source-id: 86fc728eb0cb63afb6a9fe592a9ae998da2ce2e4 --- scripts/monorepo/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/monorepo/constants.js b/scripts/monorepo/constants.js index bc6188600ce..82a455372bc 100644 --- a/scripts/monorepo/constants.js +++ b/scripts/monorepo/constants.js @@ -8,6 +8,6 @@ * @format */ -const PUBLISH_PACKAGES_TAG = '@publish-packages-to-npm'; +const PUBLISH_PACKAGES_TAG = '#publish-packages-to-npm'; module.exports = {PUBLISH_PACKAGES_TAG};