github-issue-tower-defence-management 1.98.0 → 1.98.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.
@@ -0,0 +1,46 @@
1
+ # DO NOT EDIT DIRECTLY.
2
+ # This file is auto-synchronized from HiromiShikata/repositories-management.
3
+ # Direct edits in downstream repositories will be overwritten by the next sync.
4
+ # Update the source file in HiromiShikata/repositories-management instead.
5
+
6
+ name: Close Manual PRs
7
+
8
+ on:
9
+ pull_request:
10
+ types:
11
+ - opened
12
+ - reopened
13
+
14
+ jobs:
15
+ close-manual-pr:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: step-security/harden-runner@v2
19
+ with:
20
+ egress-policy: audit
21
+ - name: Generate hs-bot-gh-ap installation token
22
+ id: app-token
23
+ uses: actions/create-github-app-token@v3
24
+ with:
25
+ client-id: ${{ secrets.HS_BOT_GH_AP_CLIENT_ID }}
26
+ private-key: ${{ secrets.HS_BOT_GH_AP_PRIVATE_KEY }}
27
+ - name: Close manually created pull request
28
+ env:
29
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
30
+ PR_ACTOR_TYPE: ${{ github.event.pull_request.user.type }}
31
+ PR_ACTOR_LOGIN: ${{ github.event.pull_request.user.login }}
32
+ PR_NUMBER: ${{ github.event.pull_request.number }}
33
+ run: |
34
+ if [ "$PR_ACTOR_TYPE" = "Bot" ]; then
35
+ echo "PR created by bot ($PR_ACTOR_LOGIN), skipping."
36
+ exit 0
37
+ fi
38
+ case "$PR_ACTOR_LOGIN" in
39
+ "hs-bot-gh-app[bot]"|"dependabot[bot]"|"renovate[bot]"|"github-actions[bot]")
40
+ echo "PR created by allowed bot ($PR_ACTOR_LOGIN), skipping."
41
+ exit 0
42
+ ;;
43
+ esac
44
+ echo "PR created by human user ($PR_ACTOR_LOGIN), closing."
45
+ gh pr comment "$PR_NUMBER" --body "Thank you for your contribution. In this repository, pull requests must be created through the automated process by pushing a feature branch. Manually created pull requests are not accepted. Please push your branch and let the CI workflow create the pull request automatically."
46
+ gh pr close "$PR_NUMBER"
@@ -60,7 +60,7 @@ jobs:
60
60
  with:
61
61
  egress-policy: audit
62
62
  - name: Checkout repository
63
- uses: actions/checkout@v6
63
+ uses: actions/checkout@v7
64
64
 
65
65
  # Add any setup steps before running the `github/codeql-action/init` action.
66
66
  # This includes steps like installing compilers or runtimes (`actions/setup-node`
@@ -19,7 +19,7 @@ jobs:
19
19
  with:
20
20
  egress-policy: audit
21
21
  - name: Checkout repository
22
- uses: actions/checkout@v6
22
+ uses: actions/checkout@v7
23
23
 
24
24
  - uses: actions/setup-node@v6
25
25
  with:
@@ -19,7 +19,7 @@ jobs:
19
19
  - uses: step-security/harden-runner@v2
20
20
  with:
21
21
  egress-policy: audit
22
- - uses: actions/checkout@v6
22
+ - uses: actions/checkout@v7
23
23
  with:
24
24
  token: ${{ secrets.GH_TOKEN || github.token }}
25
25
  - uses: actions/setup-node@v6
@@ -14,7 +14,7 @@ jobs:
14
14
  - uses: step-security/harden-runner@v2
15
15
  with:
16
16
  egress-policy: audit
17
- - uses: actions/checkout@v6
17
+ - uses: actions/checkout@v7
18
18
  with:
19
19
  token: ${{ secrets.GH_TOKEN || github.token }}
20
20
  - uses: actions/setup-node@v6
@@ -40,7 +40,7 @@ jobs:
40
40
  with:
41
41
  app-id: ${{ env.RELEASE_APP_ID }}
42
42
  private-key: ${{ env.RELEASE_APP_PRIVATE_KEY }}
43
- - uses: actions/checkout@v6
43
+ - uses: actions/checkout@v7
44
44
  with:
45
45
  token: ${{ steps.app-token.outputs.token }}
46
46
  fetch-depth: 0
@@ -16,7 +16,7 @@ jobs:
16
16
  with:
17
17
  egress-policy: audit
18
18
  - name: Checkout repository
19
- uses: actions/checkout@v6
19
+ uses: actions/checkout@v7
20
20
  with:
21
21
  fetch-depth: 0
22
22
 
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.98.2](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.98.1...v1.98.2) (2026-06-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **console:** remove the Back to list button from the console detail view ([#936](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/936)) ([d21726c](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/d21726c1c2ae6ee09bdefec370fa9ba7ad9d6a02))
7
+
8
+ ## [1.98.1](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.98.0...v1.98.1) (2026-06-24)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency dompurify to v3.4.11 [security] ([#932](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/932)) ([d55959a](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/d55959a6024fe46c0bb24c0be660b0c8044d8adf))
14
+
1
15
  # [1.98.0](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.97.4...v1.98.0) (2026-06-24)
2
16
 
3
17