phptaskman/changelog

Github changelog tasks for PHP Taskman

Installs: 5 120

Dependents: 7

Suggesters: 1

Security: 0

Stars: 2

Watchers: 3

Forks: 0

Open Issues: 0

Type:robo-tasks

1.1.0 2020-05-10 19:43 UTC

This package is auto-updated.

Last update: 2024-04-11 13:51:30 UTC


README

Generate changelogs using Github Changelog Generator.

Generate the changelog of this package

Make sure you have a Github token, if not, create one.

Then, create a taskman.yml file in the project's root:

github:
  token: REPLACE_WITH_YOUR_TOKEN_HERE
  changelog:
    user: php-taskman
    project: changelog
    filename: CHANGELOG.md
    release:
      branch: 0.x
    between-tags: $(git tag --sort=-creatordate --merged '${github.changelog.release.branch}' | tr '\n' ',')
    extra: --no-unreleased

and then:

./vendor/bin/taskman github:changelog

For more information about how to customise the building process check Taskman Changelog project page.