Skip to content
Open
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
## [unreleased]

### Added

- Added automated GitHub release creation.
- Added changelog-based release notes.
- Added configurable tag templates and release metadata.
- Added contributor detection and GitHub-native mentions.
- Added optional CI workflow dispatch for generated changelog PRs.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build
FROM node:24.16.0-alpine AS build
FROM node:24.17.0-alpine AS build

WORKDIR /app

Expand All @@ -24,7 +24,7 @@ RUN rm -rf ./src \
./tsconfig.prod.json

# Stage 2: Production
FROM node:24.16.0-alpine
FROM node:24.17.0-alpine

WORKDIR /app

Expand Down
10 changes: 10 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ inputs:
description: "Explicit version for releasing (overwrites package.json)"
required: false
default: ""
ci-workflows:
description: >
Comma-separated workflow file names to dispatch after creating a changelog PR.
Use 'auto' (default) to dispatch all workflow_dispatch-enabled workflows except the release workflow itself.
Use 'none' or 'false' to disable dispatch entirely.
Dispatched CI job results are mirrored as GitHub Check Runs on the changelog PR head SHA,
so required checks are satisfied automatically.
Requires: permissions: actions: write, checks: write (plus contents: write, pull-requests: write).
required: false
default: "auto"

runs:
using: "docker"
Expand Down
Loading
Loading