poe-code 3.0.159 → 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: 'GitHub: Issue Comment Created'
1
+ name: "GitHub: Issue Comment Created"
2
2
  on:
3
3
  issue_comment:
4
- types: [created]
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: 'GitHub: Issue Comment Created'
1
+ name: "GitHub: Issue Comment Created"
2
2
  on:
3
3
  issue_comment:
4
- types: [created]
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,6 +1,6 @@
1
1
  {
2
2
  "name": "poe-code",
3
- "version": "3.0.159",
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",