modular-avatar/.github/gen-docs-changelog.pl
nadena.dev release bot 55d744885f Release 1.12.0-beta.0
2025-03-17 04:09:15 +00:00

22 lines
398 B
Perl
Executable File

#!/usr/bin/perl
use strict;
use warnings;
# We want to skip two sections - the main header, then up to the first version header.
# In a prerelease, we only want to skip the first section (not including the unreleased header)
if ($ENV{PRERELEASE} eq 'false') {
while (<>) {
if (/^\## /) { last; }
}
}
while (<>) {
if (/^## /) { print; last; }
}
while (<>) {
print;
}