Skip to content

GitHub Action to generate a changelog for opening a release PR

Notifications You must be signed in to change notification settings

thedyrt/generate-changelog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Generate Changelog javascript action

This action generates a changelog suitable for use with creating a pull request using the output of git log.

Inputs

base

The base ref to compare against when running git log <base>..<head>. Default "origin/master".

head

Required The head ref to compare against when running git log <base>..<head>.

log-args

Additional arguments to pass to git log.

Outputs

changelog

The sanitized output of git log --no-merges --no-decorate --topo-order --reverse --format='* %s' <log-args> <base>..<head>.

Example usage

uses: thedyrt/[email protected]
with:
  base: 'origin/master'
  head: 'origin/develop'
  log-args: '[email protected]'

About

GitHub Action to generate a changelog for opening a release PR

Resources

Stars

Watchers

Forks

Packages

No packages published