poe-code 3.0.139 → 3.0.140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -2
- package/dist/index.js.map +2 -2
- package/dist/prompts/github-issue-opened.md +12 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14752,6 +14752,7 @@ function buildCommandEnv(env, secrets) {
|
|
|
14752
14752
|
"GITHUB_REPOSITORY",
|
|
14753
14753
|
"ISSUE_NUMBER",
|
|
14754
14754
|
"ISSUE_TITLE",
|
|
14755
|
+
"ISSUE_BODY",
|
|
14755
14756
|
"COMMENT_AUTHOR",
|
|
14756
14757
|
"COMMENT_BODY",
|
|
14757
14758
|
"PR_NUMBER",
|
|
@@ -14774,7 +14775,8 @@ function buildTemplateContext(env) {
|
|
|
14774
14775
|
...buildUrl(repo, issueNumber, prNumber) === void 0 ? {} : { url: buildUrl(repo, issueNumber, prNumber) },
|
|
14775
14776
|
issue: pruneUndefined({
|
|
14776
14777
|
number: issueNumber,
|
|
14777
|
-
title: env.get("ISSUE_TITLE")
|
|
14778
|
+
title: env.get("ISSUE_TITLE"),
|
|
14779
|
+
body: env.get("ISSUE_BODY")
|
|
14778
14780
|
}),
|
|
14779
14781
|
comment: pruneUndefined({
|
|
14780
14782
|
author: env.get("COMMENT_AUTHOR"),
|
|
@@ -28086,7 +28088,7 @@ var init_package = __esm({
|
|
|
28086
28088
|
"package.json"() {
|
|
28087
28089
|
package_default = {
|
|
28088
28090
|
name: "poe-code",
|
|
28089
|
-
version: "3.0.
|
|
28091
|
+
version: "3.0.140",
|
|
28090
28092
|
description: "CLI tool to configure Poe API for developer workflows.",
|
|
28091
28093
|
type: "module",
|
|
28092
28094
|
main: "./dist/index.js",
|