From 6f8e209a2e642137098ae121118e123ae97e134b Mon Sep 17 00:00:00 2001 From: Steve Guntrip <12534592+stevecat@users.noreply.github.com> Date: Tue, 22 Nov 2022 08:39:22 +0000 Subject: [PATCH] Always set 'size' when adding items to the review board (#32806) --- .github/actions-scripts/ready-for-docs-review.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions-scripts/ready-for-docs-review.js b/.github/actions-scripts/ready-for-docs-review.js index beeedf2564..4bfb7b1dfb 100644 --- a/.github/actions-scripts/ready-for-docs-review.js +++ b/.github/actions-scripts/ready-for-docs-review.js @@ -86,7 +86,7 @@ async function run() { // If the item is a PR, determine the feature and size let feature = '' - let sizeType = '' // You don't need to use a field ID if you want the value to be empty + let sizeType = sizeS // We need to set something in case this is an issue if (data.item.__typename === 'PullRequest') { // Get the // - number of files changed @@ -212,7 +212,6 @@ async function run() { authorID, headers: { authorization: `token ${process.env.TOKEN}`, - 'GraphQL-Features': 'projects_next_graphql', }, }) console.log('Done populating fields for item')