Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 988 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 988 Bytes

FelNullChangeLogger

The ikisugi change logger.
Automatically generate change logs from github commit logs.

Gradle Plugin

Required code

Write the following code in build.gradle.

plugins {
  id "dev.felnull.felnull-change-logger" version "1.1"
}

changelog {
    //Requirement
    trigger = "v1.3" //The name (version) of the tag that triggered it. Not required if running on GitHub Actions.
    githubToken = "ikisugithubtoken" //Github token.
    repository = "TeamFelnull/IamMusicPlayer" //Target repository. Not required if running on GitHub Actions.
    releaseType = "release" //Release type.
    //Options
    skip() //Does not perform task even if log generation is executed.
    triggerType = "tag" //It's a meaningless code for now.
}

How to Use

gradle generateChangelog

After execution, a change log will be generated in the changelog folder of the build directory.