Skip to content

Instantly share code, notes, and snippets.

View islamaskar's full-sized avatar

Islam Askar islamaskar

View GitHub Profile
@islamaskar
islamaskar / release-pr-gen.pl
Last active September 4, 2022 20:25
Perl script to format Conventional Commits as markdown Release Notes, for more details https://islam.askar.xyz/keep-calm-and-automate-release-notes/
#! /usr/bin/perl
use strict;
use warnings;
exit if not defined $ARGV[0];
my $minor = my $major = '';
my %release_note_sections = (
'feat' => '⭐ Features',