You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there is no other content in the PR body, the check in alreadyPublished.js returns false instead of true, and two tables get published to the PR description. I believe this is because the regex is prefixed with a new line character, so if there is not a line above the table, it returns false: const regexp = new RegExp(\n(${TABLE_TITLE})\n);. Unfortunately, I don't have time for a PR now, but wanted to open the issue so it wasn't lost! Thanks Manuel
The text was updated successfully, but these errors were encountered:
If there is no other content in the PR body, the check in alreadyPublished.js returns false instead of true, and two tables get published to the PR description. I believe this is because the regex is prefixed with a new line character, so if there is not a line above the table, it returns false:
const regexp = new RegExp(
\n(${TABLE_TITLE})\n);
. Unfortunately, I don't have time for a PR now, but wanted to open the issue so it wasn't lost! Thanks ManuelThe text was updated successfully, but these errors were encountered: