npm-cli-gh-issue-preparator 1.10.1 → 1.10.2
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/.github/workflows/create-pr.yml +3 -5
- package/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/package.json +2 -2
|
@@ -11,12 +11,10 @@ jobs:
|
|
|
11
11
|
steps:
|
|
12
12
|
- name: Checkout repository
|
|
13
13
|
uses: actions/checkout@v6
|
|
14
|
-
with:
|
|
15
|
-
token: ${{ secrets.GH_TOKEN || github.token }}
|
|
16
14
|
|
|
17
15
|
- name: Set branch name as output
|
|
18
16
|
id: branch_name
|
|
19
|
-
run: echo "
|
|
17
|
+
run: echo "branch=${GITHUB_REF#refs/heads/}" >> "$GITHUB_OUTPUT"
|
|
20
18
|
|
|
21
19
|
- name: Create Pull Request
|
|
22
20
|
id: create_pr
|
|
@@ -29,7 +27,7 @@ jobs:
|
|
|
29
27
|
pr_body: |
|
|
30
28
|
:magic_wand: :sparkles:
|
|
31
29
|
|
|
32
|
-
|
|
30
|
+
pr_draft: false
|
|
33
31
|
|
|
34
32
|
- name: Assign PR to author
|
|
35
33
|
if: steps.create_pr.outputs.pr_number
|
|
@@ -46,7 +44,7 @@ jobs:
|
|
|
46
44
|
run: |
|
|
47
45
|
PR_DATA=$(curl -s -H "Authorization: token ${{ secrets.GH_TOKEN }}" -H "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/${{ github.repository }}/pulls/${{ steps.create_pr.outputs.pr_number }}")
|
|
48
46
|
PR_ID=$(echo "$PR_DATA" | jq -r '.node_id')
|
|
49
|
-
echo "
|
|
47
|
+
echo "node_id=$PR_ID" >> "$GITHUB_OUTPUT"
|
|
50
48
|
|
|
51
49
|
- name: Enable Auto Merge for PR
|
|
52
50
|
if: steps.create_pr.outputs.pr_number
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.10.2](https://github.com/HiromiShikata/npm-cli-gh-issue-preparator/compare/v1.10.1...v1.10.2) (2026-02-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **readme:** update section title from 'Start daemon' to 'Start preparation'fix ([6fbd069](https://github.com/HiromiShikata/npm-cli-gh-issue-preparator/commit/6fbd069cf531a021e48ece7f0ac85f8cdeb183c1))
|
|
7
|
+
|
|
1
8
|
## [1.10.1](https://github.com/HiromiShikata/npm-cli-gh-issue-preparator/compare/v1.10.0...v1.10.1) (2026-02-13)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Commands:
|
|
|
28
28
|
|
|
29
29
|
Here's a quick example to illustrate its usage:
|
|
30
30
|
|
|
31
|
-
### Start
|
|
31
|
+
### Start preparation
|
|
32
32
|
|
|
33
33
|
```
|
|
34
34
|
npx npm-cli-gh-issue-preparator startDaemon --projectUrl <projectUrl> --awaitingWorkspaceStatus "Awaiting workspace" --preparationStatus "Preparation" --defaultAgentName "impl"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-cli-gh-issue-preparator",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -71,6 +71,6 @@
|
|
|
71
71
|
"@semantic-release/npm": "^13.0.0",
|
|
72
72
|
"commander": "^14.0.0",
|
|
73
73
|
"dotenv": "^16.4.5",
|
|
74
|
-
"github-issue-tower-defence-management": "^1.21.
|
|
74
|
+
"github-issue-tower-defence-management": "^1.21.2"
|
|
75
75
|
}
|
|
76
76
|
}
|