poe-code 3.0.158 → 3.0.160
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.
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: "GitHub: Issue Comment Created"
|
|
2
2
|
on:
|
|
3
3
|
issue_comment:
|
|
4
|
-
types:
|
|
5
|
-
|
|
6
|
-
# Keep these permissions in sync with the reusable workflow referenced below.
|
|
4
|
+
types:
|
|
5
|
+
- created
|
|
7
6
|
permissions:
|
|
8
7
|
contents: write
|
|
9
8
|
issues: write
|
|
10
9
|
pull-requests: write
|
|
11
|
-
|
|
12
10
|
jobs:
|
|
13
11
|
run:
|
|
14
12
|
uses: __UPSTREAM_REPO__/.github/workflows/gh-github-issue-comment-created.yml@main
|
|
@@ -23,3 +21,4 @@ jobs:
|
|
|
23
21
|
COMMENT_AUTHOR_ASSOCIATION: ${{ github.event.comment.author_association }}
|
|
24
22
|
COMMENT_USER_TYPE: ${{ github.event.comment.user.type }}
|
|
25
23
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
24
|
+
if: github.event.issue.pull_request == null
|
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: "GitHub: Issue Comment Created"
|
|
2
2
|
on:
|
|
3
3
|
issue_comment:
|
|
4
|
-
types:
|
|
5
|
-
|
|
4
|
+
types:
|
|
5
|
+
- created
|
|
6
6
|
concurrency:
|
|
7
7
|
group: ${{ github.workflow }}-${{ github.event.issue.number }}
|
|
8
8
|
cancel-in-progress: true
|
|
9
|
-
|
|
10
9
|
jobs:
|
|
11
10
|
guard:
|
|
12
|
-
if: github.event.issue.state == 'open' && github.event.comment.user.type != 'Bot'
|
|
11
|
+
if: format('{0}', github.event.issue.pull_request != null) != 'true' && github.event.issue.state == 'open' && github.event.comment.user.type != 'Bot'
|
|
13
12
|
runs-on: ubuntu-latest
|
|
14
13
|
env:
|
|
15
14
|
OUTPUT_FORMAT: terminal
|
|
@@ -65,7 +64,6 @@ jobs:
|
|
|
65
64
|
else
|
|
66
65
|
echo "should_run=false" >> "$GITHUB_OUTPUT"
|
|
67
66
|
fi
|
|
68
|
-
|
|
69
67
|
run:
|
|
70
68
|
needs: guard
|
|
71
69
|
if: needs.guard.outputs.should_run == 'true'
|
package/package.json
CHANGED
|
@@ -1,10 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "poe-code",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.160",
|
|
4
4
|
"description": "CLI tool to configure Poe API for developer workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./cmdkit": {
|
|
14
|
+
"types": "./packages/cmdkit/dist/index.d.ts",
|
|
15
|
+
"import": "./packages/cmdkit/dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./cmdkit/cli": {
|
|
18
|
+
"types": "./packages/cmdkit/dist/cli.d.ts",
|
|
19
|
+
"import": "./packages/cmdkit/dist/cli.js"
|
|
20
|
+
},
|
|
21
|
+
"./cmdkit/mcp": {
|
|
22
|
+
"types": "./packages/cmdkit/dist/mcp.d.ts",
|
|
23
|
+
"import": "./packages/cmdkit/dist/mcp.js"
|
|
24
|
+
},
|
|
25
|
+
"./cmdkit/sdk": {
|
|
26
|
+
"types": "./packages/cmdkit/dist/sdk.d.ts",
|
|
27
|
+
"import": "./packages/cmdkit/dist/sdk.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
8
30
|
"workspaces": [
|
|
9
31
|
"packages/*"
|
|
10
32
|
],
|