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.
- package/.github/workflows/close-manual-prs.yml +46 -0
- package/.github/workflows/codeql.yml +1 -1
- package/.github/workflows/console-ui.yml +1 -1
- package/.github/workflows/empty-format-test-job.yml +1 -1
- package/.github/workflows/format.yml +1 -1
- package/.github/workflows/publish.yml +1 -1
- package/.github/workflows/test.yml +1 -1
- package/CHANGELOG.md +14 -0
- package/bin/adapter/entry-points/console/ui-dist/assets/index-WT-I47yz.js +101 -0
- package/bin/adapter/entry-points/console/ui-dist/index.html +1 -1
- package/package.json +2 -2
- package/src/adapter/entry-points/console/ui/e2e/consoleScenario.spec.ts +1 -1
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsolePage.test.tsx +1 -2
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsolePage.tsx +0 -7
- package/src/adapter/entry-points/console/ui-dist/assets/index-WT-I47yz.js +101 -0
- package/src/adapter/entry-points/console/ui-dist/index.html +1 -1
- package/bin/adapter/entry-points/console/ui-dist/assets/index-BFKRWKvS.js +0 -101
- package/src/adapter/entry-points/console/ui-dist/assets/index-BFKRWKvS.js +0 -101
|
@@ -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@
|
|
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`
|
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
|
|