Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/01-packages_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ body:
- network-client
- network-server
- sound
- other
validations:
required: true
- type: textarea
Expand Down
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/02-utils_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ body:
attributes:
label: Which utils is this bug report for?
options:
- actions
- eslint-config
- prettier-config
- other
validations:
required: true
- type: textarea
Expand Down
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/03-feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ body:
- network-client
- network-server
- sound
- actions
- eslint-config
- prettier-config
- other
validations:
required: true
- type: textarea
Expand Down
8 changes: 6 additions & 2 deletions .github/issue-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,14 @@ packages:sound:
- "### Which (package|utils|package or utils) is this (bug
report|feature request) for\\?\\n\\nsound\\n"

utils:actions:
- "### Which (package|utils|package or utils) is this (bug
report|feature request) for\\?\\n\\nactions\\n"

utils:eslint-config:
- "### Which (package|utils|package or utils) is this (bug
report|feature request) for\\?\\n\\nstructures\\n"
report|feature request) for\\?\\n\\neslint-config\\n"

utils:prettier-config:
- "### Which (package|utils|package or utils) is this (bug
report|feature request) for\\?\\n\\ui\\n"
report|feature request) for\\?\\n\\nprettier-config\\n"
6 changes: 6 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ packages:sound:
- packages/sound/*
- packages/sound/**/*

utils:actions:
- changed-files:
- any-glob-to-any-file:
- utils/actions/*
- utils/actions/**/*

utils:eslint-config:
- changed-files:
- any-glob-to-any-file:
Expand Down
4 changes: 4 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@
description: "Adding missing tests or correcting existing tests"
color: "7f8f92"

- name: "utils:actions"
description: "Related to Github actions"
color: "606bdf"

- name: "utils:eslint-config"
description: "Related to ESLint config"
color: "606bdf"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ on:
env:
EM_CACHE_FOLDER: "emsdk-cache"

permissions:
contents: write

jobs:
npm-publish:
name: npm publish
Expand Down
2 changes: 1 addition & 1 deletion packages/ecs-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

# [@nanoforge-dev/ecs-server@0.0.1](https://github.com/NanoForge-dev/Engine/tree/@nanoforge-dev/[email protected]) - (2026-01-09)
# [@nanoforge-dev/ecs-server@1.0.0](https://github.com/NanoForge-dev/Engine/tree/@nanoforge-dev/[email protected]) - (2026-01-09)

## Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion utils/actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"lint": "prettier --check . && eslint --format=pretty src",
"format": "prettier --write . && eslint --fix --format=pretty src",
"prepack": "pnpm run build && pnpm run lint",
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/actions/*'",
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'utils/actions/*'",
"release": "cliff-jumper"
},
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion utils/actions/src/release-packages/generate-release-tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,15 @@ async function getReleaseEntries(dry: boolean, devTag?: string) {
}

foundChangelog = true;
continue;
}

if (foundChangelog) {
changelogLines.push(line);
}
}

release.changelog = changelogLines.join("\n");
release.changelog = `${changelogLines.join("\n").replace(/^\s+|\s+$/g, "")}\n`;
} catch (error) {
// Probably just no changelog file but log just in case
warning(`Error parsing changelog for ${pkg.name}, will use auto generated: ${error}`);
Expand Down
Loading