From 3061603265c94d2c982c3068a2c3e2872e3cd88b Mon Sep 17 00:00:00 2001 From: Matthew Runyon Date: Thu, 4 Jan 2024 11:08:46 -0600 Subject: [PATCH] Revise auto-generated doc issues --- .github/workflows/create-docs-issues.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-docs-issues.js b/.github/workflows/create-docs-issues.js index 1335d3bc480..4017a213776 100644 --- a/.github/workflows/create-docs-issues.js +++ b/.github/workflows/create-docs-issues.js @@ -1,6 +1,6 @@ module.exports = async ({ github, context }) => { const ISSUE_REPO_NAME = "deephaven.io"; - const ISSUE_TYPES = ["how-to", "reference"]; + const ISSUE_TYPES = ["Community"]; const body = `_This issue was auto-generated_\n\n` + @@ -13,7 +13,7 @@ module.exports = async ({ github, context }) => { github.rest.issues.create({ owner: context.repo.owner, repo: ISSUE_REPO_NAME, - title: `${type.toUpperCase()}: ${context.payload.pull_request.title}`, + title: `${context.payload.pull_request.title}`, body, labels: [type, "documentation", "triage", "autogenerated"], })