github-issue-tower-defence-management 1.148.15 → 1.148.17
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/api-created_issue_pr.yml +1 -1
- package/.github/workflows/close-manual-prs.yml +1 -1
- package/.github/workflows/codeql.yml +2 -2
- package/.github/workflows/commit-lint.yml +2 -2
- package/.github/workflows/create-pr.yml +1 -1
- package/.github/workflows/secret-scan.yml +1 -1
- package/.github/workflows/umino-project.yml +2 -2
- package/CHANGELOG.md +14 -0
- package/bin/adapter/entry-points/console/ui-dist/assets/{index-DY-3a7sI.js → index-UQt5L756.js} +27 -26
- package/bin/adapter/entry-points/console/ui-dist/index.html +1 -1
- package/bin/domain/usecases/NotifyFinishedIssuePreparationUseCase.js +13 -0
- package/bin/domain/usecases/NotifyFinishedIssuePreparationUseCase.js.map +1 -1
- package/package.json +4 -4
- package/src/adapter/entry-points/console/ui-dist/assets/{index-DY-3a7sI.js → index-UQt5L756.js} +27 -26
- package/src/adapter/entry-points/console/ui-dist/index.html +1 -1
- package/src/domain/usecases/NotifyFinishedIssuePreparationUseCase.test.ts +116 -0
- package/src/domain/usecases/NotifyFinishedIssuePreparationUseCase.ts +31 -0
- package/types/domain/usecases/NotifyFinishedIssuePreparationUseCase.d.ts.map +1 -1
|
@@ -16,7 +16,7 @@ on:
|
|
|
16
16
|
|
|
17
17
|
jobs:
|
|
18
18
|
close-manual-pr:
|
|
19
|
-
runs-on: ubuntu-latest
|
|
19
|
+
runs-on: ${{ github.event.repository.private && 'blacksmith-2vcpu-ubuntu-2204' || 'ubuntu-latest' }}
|
|
20
20
|
if: github.event_name != 'pull_request' || github.event.pull_request.user.type != 'Bot'
|
|
21
21
|
steps:
|
|
22
22
|
- uses: step-security/harden-runner@v2
|
|
@@ -73,7 +73,7 @@ jobs:
|
|
|
73
73
|
|
|
74
74
|
# Initializes the CodeQL tools for scanning.
|
|
75
75
|
- name: Initialize CodeQL
|
|
76
|
-
uses: github/codeql-action/init@v4.37.
|
|
76
|
+
uses: github/codeql-action/init@v4.37.6
|
|
77
77
|
with:
|
|
78
78
|
languages: ${{ matrix.language }}
|
|
79
79
|
build-mode: ${{ matrix.build-mode }}
|
|
@@ -102,6 +102,6 @@ jobs:
|
|
|
102
102
|
exit 1
|
|
103
103
|
|
|
104
104
|
- name: Perform CodeQL Analysis
|
|
105
|
-
uses: github/codeql-action/analyze@v4.37.
|
|
105
|
+
uses: github/codeql-action/analyze@v4.37.6
|
|
106
106
|
with:
|
|
107
107
|
category: '/language:${{matrix.language}}'
|
|
@@ -18,7 +18,7 @@ concurrency:
|
|
|
18
18
|
|
|
19
19
|
jobs:
|
|
20
20
|
commit-lint:
|
|
21
|
-
runs-on: ubuntu-latest
|
|
21
|
+
runs-on: ${{ github.event.repository.private && 'blacksmith-2vcpu-ubuntu-2204' || 'ubuntu-latest' }}
|
|
22
22
|
permissions:
|
|
23
23
|
issues: read
|
|
24
24
|
pull-requests: write
|
|
@@ -53,7 +53,7 @@ jobs:
|
|
|
53
53
|
exclude-branches: 'release/**, dependabot/**, project-common/**'
|
|
54
54
|
loose-matching: true
|
|
55
55
|
- name: Check PR title follows conventional commit format
|
|
56
|
-
uses: amannn/action-semantic-pull-request@
|
|
56
|
+
uses: amannn/action-semantic-pull-request@v6
|
|
57
57
|
env:
|
|
58
58
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
59
59
|
with:
|
|
@@ -10,7 +10,7 @@ on:
|
|
|
10
10
|
|
|
11
11
|
jobs:
|
|
12
12
|
create_and_enable_automerge:
|
|
13
|
-
runs-on: ubuntu-latest
|
|
13
|
+
runs-on: ${{ github.event.repository.private && 'blacksmith-2vcpu-ubuntu-2204' || 'ubuntu-latest' }}
|
|
14
14
|
if: github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.ref_name != github.event.repository.default_branch
|
|
15
15
|
steps:
|
|
16
16
|
- uses: step-security/harden-runner@v2
|
|
@@ -57,7 +57,7 @@ jobs:
|
|
|
57
57
|
contains(github.event.comment.body, '/movenextactiondateto') ||
|
|
58
58
|
contains(github.event.comment.body, '/changeassignee ')))) &&
|
|
59
59
|
github.event.action != 'labeled'
|
|
60
|
-
runs-on: ubuntu-latest
|
|
60
|
+
runs-on: ${{ github.event.repository.private && 'blacksmith-2vcpu-ubuntu-2204' || 'ubuntu-latest' }}
|
|
61
61
|
steps:
|
|
62
62
|
- uses: step-security/harden-runner@v2
|
|
63
63
|
with:
|
|
@@ -281,7 +281,7 @@ jobs:
|
|
|
281
281
|
repo-token: ${{ steps.app-token.outputs.token }}
|
|
282
282
|
|
|
283
283
|
check_pull_requests_to_link_issues:
|
|
284
|
-
runs-on: ubuntu-latest
|
|
284
|
+
runs-on: ${{ github.event.repository.private && 'blacksmith-2vcpu-ubuntu-2204' || 'ubuntu-latest' }}
|
|
285
285
|
name: Check linked issues in pull requests
|
|
286
286
|
if: >-
|
|
287
287
|
github.repository != 'HiromiShikata/test-repository' &&
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.148.17](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.148.16...v1.148.17) (2026-08-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **preparation:** return an issue declared to need no pull request to awaiting workspace ([#1498](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/1498)) ([fc9ceb5](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/fc9ceb51bf23163276c41d24a15398951b595e1f)), closes [#1497](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/1497)
|
|
7
|
+
|
|
8
|
+
## [1.148.16](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.148.15...v1.148.16) (2026-08-12)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update all non-major dependencies ([#1426](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/1426)) ([398200e](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/398200ee96a68afcf23acd3af08467079bfa26d5))
|
|
14
|
+
|
|
1
15
|
## [1.148.15](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.148.14...v1.148.15) (2026-08-12)
|
|
2
16
|
|
|
3
17
|
|