poe-code 3.0.180 → 3.0.181

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.
@@ -40,6 +40,14 @@ jobs:
40
40
  with:
41
41
  node-version: 20
42
42
  - run: npm install -g poe-code@latest
43
+ - name: Configure git identity for GitHub App
44
+ env:
45
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
46
+ APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
47
+ run: |
48
+ USER_ID=$(gh api "/users/${APP_SLUG}[bot]" --jq .id)
49
+ git config --global user.name "${APP_SLUG}[bot]"
50
+ git config --global user.email "${USER_ID}+${APP_SLUG}[bot]@users.noreply.github.com"
43
51
  - run: poe-code github-workflows prepare fix-vulnerabilities
44
52
  env:
45
53
  POE_CODE_STDERR_LOGS: "1"
@@ -154,6 +154,14 @@ jobs:
154
154
  uses: actions/checkout@v4
155
155
  with:
156
156
  token: ${{ steps.app-token.outputs.token }}
157
+ - name: Configure git identity for GitHub App
158
+ env:
159
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
160
+ APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
161
+ run: |
162
+ USER_ID=$(gh api "/users/${APP_SLUG}[bot]" --jq .id)
163
+ git config --global user.name "${APP_SLUG}[bot]"
164
+ git config --global user.email "${USER_ID}+${APP_SLUG}[bot]@users.noreply.github.com"
157
165
  - run: poe-code github-workflows prepare github-issue-comment-created
158
166
  env:
159
167
  POE_CODE_STDERR_LOGS: "1"
@@ -95,6 +95,14 @@ jobs:
95
95
  with:
96
96
  node-version: 20
97
97
  - run: npm install -g poe-code@latest
98
+ - name: Configure git identity for GitHub App
99
+ env:
100
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
101
+ APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
102
+ run: |
103
+ USER_ID=$(gh api "/users/${APP_SLUG}[bot]" --jq .id)
104
+ git config --global user.name "${APP_SLUG}[bot]"
105
+ git config --global user.email "${USER_ID}+${APP_SLUG}[bot]@users.noreply.github.com"
98
106
  - run: poe-code github-workflows prepare github-issue-opened
99
107
  env:
100
108
  POE_CODE_STDERR_LOGS: "1"
@@ -148,6 +148,14 @@ jobs:
148
148
  uses: actions/checkout@v4
149
149
  with:
150
150
  token: ${{ steps.app-token.outputs.token }}
151
+ - name: Configure git identity for GitHub App
152
+ env:
153
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
154
+ APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
155
+ run: |
156
+ USER_ID=$(gh api "/users/${APP_SLUG}[bot]" --jq .id)
157
+ git config --global user.name "${APP_SLUG}[bot]"
158
+ git config --global user.email "${USER_ID}+${APP_SLUG}[bot]@users.noreply.github.com"
151
159
  - run: poe-code github-workflows prepare github-pull-request-comment-created
152
160
  env:
153
161
  POE_CODE_STDERR_LOGS: "1"
@@ -90,6 +90,14 @@ jobs:
90
90
  with:
91
91
  node-version: 20
92
92
  - run: npm install -g poe-code@latest
93
+ - name: Configure git identity for GitHub App
94
+ env:
95
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
96
+ APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
97
+ run: |
98
+ USER_ID=$(gh api "/users/${APP_SLUG}[bot]" --jq .id)
99
+ git config --global user.name "${APP_SLUG}[bot]"
100
+ git config --global user.email "${USER_ID}+${APP_SLUG}[bot]@users.noreply.github.com"
93
101
  - run: poe-code github-workflows prepare github-pull-request-opened
94
102
  env:
95
103
  POE_CODE_STDERR_LOGS: "1"
@@ -90,6 +90,14 @@ jobs:
90
90
  with:
91
91
  node-version: 20
92
92
  - run: npm install -g poe-code@latest
93
+ - name: Configure git identity for GitHub App
94
+ env:
95
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
96
+ APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
97
+ run: |
98
+ USER_ID=$(gh api "/users/${APP_SLUG}[bot]" --jq .id)
99
+ git config --global user.name "${APP_SLUG}[bot]"
100
+ git config --global user.email "${USER_ID}+${APP_SLUG}[bot]@users.noreply.github.com"
93
101
  - run: poe-code github-workflows prepare github-pull-request-synchronized
94
102
  env:
95
103
  POE_CODE_STDERR_LOGS: "1"
@@ -39,6 +39,14 @@ jobs:
39
39
  with:
40
40
  node-version: 20
41
41
  - run: npm install -g poe-code@latest
42
+ - name: Configure git identity for GitHub App
43
+ env:
44
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
45
+ APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
46
+ run: |
47
+ USER_ID=$(gh api "/users/${APP_SLUG}[bot]" --jq .id)
48
+ git config --global user.name "${APP_SLUG}[bot]"
49
+ git config --global user.email "${USER_ID}+${APP_SLUG}[bot]@users.noreply.github.com"
42
50
  - run: poe-code github-workflows prepare update-dependencies
43
51
  env:
44
52
  POE_CODE_STDERR_LOGS: "1"
@@ -40,6 +40,14 @@ jobs:
40
40
  with:
41
41
  node-version: 20
42
42
  - run: npm install -g poe-code@latest
43
+ - name: Configure git identity for GitHub App
44
+ env:
45
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
46
+ APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
47
+ run: |
48
+ USER_ID=$(gh api "/users/${APP_SLUG}[bot]" --jq .id)
49
+ git config --global user.name "${APP_SLUG}[bot]"
50
+ git config --global user.email "${USER_ID}+${APP_SLUG}[bot]@users.noreply.github.com"
43
51
  - run: poe-code github-workflows prepare update-documentation
44
52
  env:
45
53
  POE_CODE_STDERR_LOGS: "1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poe-code",
3
- "version": "3.0.180",
3
+ "version": "3.0.181",
4
4
  "description": "CLI tool to configure Poe API for developer workflows.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",