Skip to content

Commit

Permalink
Revise auto-generated doc issues (#5008)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrunyon authored Jan 4, 2024
1 parent bfcffc1 commit b44b14e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-docs-issues.js
Original file line number Diff line number Diff line change
@@ -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` +
Expand All @@ -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"],
})
Expand Down

0 comments on commit b44b14e

Please sign in to comment.