From cebf3af8ccbea2e75384af1f0b9093d2b6183690 Mon Sep 17 00:00:00 2001 From: dragos-mateescu-visma <83346176+dragos-mateescu-visma@users.noreply.github.com> Date: Wed, 9 Jun 2021 16:03:28 +0300 Subject: [PATCH] create changelog generator action --- .github/workflows/changelog-generator.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/changelog-generator.yml diff --git a/.github/workflows/changelog-generator.yml b/.github/workflows/changelog-generator.yml new file mode 100644 index 000000000..510fbf48c --- /dev/null +++ b/.github/workflows/changelog-generator.yml @@ -0,0 +1,20 @@ +- name: Run Changelog CI + uses: saadmk11/changelog-ci@v0.8.0 + with: + # Optional, you can provide any name for your changelog file, + # defaults to `CHANGELOG.md` if not provided. + changelog_filename: MY_CHANGELOG.md + # Optional, only required when you want more customization + # e.g: group your changelog by labels with custom titles, + # different version prefix, pull request title and version number regex etc. + # config file can be in JSON or YAML format. + config_file: changelog-ci-config.json + # Optional, This will be used to configure git + # defaults to `github-actions[bot]` if not provided. + committer_username: 'test' + committer_email: 'test@test.com' + env: + # optional, only required for `private` repositories + # and required if the changelog comment + # option is turned on through the config file + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}