├── .github ├── dependabot.yml ├── stale.yml └── workflows │ ├── release.yml │ ├── test.yml │ └── versioning.yml ├── .gitignore ├── .ncurc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yml ├── dist ├── 282.index.js ├── 398.index.js ├── 532.index.js ├── commit.hbs ├── commit1.hbs ├── commit2.hbs ├── commit3.hbs ├── footer.hbs ├── footer1.hbs ├── footer2.hbs ├── header.hbs ├── header1.hbs ├── header2.hbs ├── header3.hbs ├── index.js ├── template.hbs ├── template1.hbs ├── template2.hbs └── template3.hbs ├── mix.exs ├── package.json ├── src ├── helpers │ ├── bumpVersion.js │ ├── generateChangelog.js │ ├── git.js │ ├── load-preset.js │ └── requireScript.js ├── index.js └── version │ ├── base.js │ ├── git.js │ ├── index.js │ ├── json.js │ ├── mix.js │ ├── properties.js │ ├── toml.js │ └── yaml.js ├── test-changelog.config.js ├── test-file-2.json ├── test-file-content.js ├── test-file-pre-release.json ├── test-file.json ├── test-file.properties ├── test-file.toml ├── test-file.yaml ├── test-github-output.js ├── test-input-file.md ├── test-output.js ├── test-pre-changelog-generation.js └── test-pre-commit.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/versioning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/.github/workflows/versioning.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.ncurc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/.ncurc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/282.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/282.index.js -------------------------------------------------------------------------------- /dist/398.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/398.index.js -------------------------------------------------------------------------------- /dist/532.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/532.index.js -------------------------------------------------------------------------------- /dist/commit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/commit.hbs -------------------------------------------------------------------------------- /dist/commit1.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/commit1.hbs -------------------------------------------------------------------------------- /dist/commit2.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/commit2.hbs -------------------------------------------------------------------------------- /dist/commit3.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/commit3.hbs -------------------------------------------------------------------------------- /dist/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/footer.hbs -------------------------------------------------------------------------------- /dist/footer1.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/footer2.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/footer2.hbs -------------------------------------------------------------------------------- /dist/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/header.hbs -------------------------------------------------------------------------------- /dist/header1.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/header1.hbs -------------------------------------------------------------------------------- /dist/header2.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/header2.hbs -------------------------------------------------------------------------------- /dist/header3.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/header3.hbs -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/template.hbs -------------------------------------------------------------------------------- /dist/template1.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/template1.hbs -------------------------------------------------------------------------------- /dist/template2.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/template2.hbs -------------------------------------------------------------------------------- /dist/template3.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/dist/template3.hbs -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/mix.exs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/package.json -------------------------------------------------------------------------------- /src/helpers/bumpVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/helpers/bumpVersion.js -------------------------------------------------------------------------------- /src/helpers/generateChangelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/helpers/generateChangelog.js -------------------------------------------------------------------------------- /src/helpers/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/helpers/git.js -------------------------------------------------------------------------------- /src/helpers/load-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/helpers/load-preset.js -------------------------------------------------------------------------------- /src/helpers/requireScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/helpers/requireScript.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/index.js -------------------------------------------------------------------------------- /src/version/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/version/base.js -------------------------------------------------------------------------------- /src/version/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/version/git.js -------------------------------------------------------------------------------- /src/version/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/version/index.js -------------------------------------------------------------------------------- /src/version/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/version/json.js -------------------------------------------------------------------------------- /src/version/mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/version/mix.js -------------------------------------------------------------------------------- /src/version/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/version/properties.js -------------------------------------------------------------------------------- /src/version/toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/version/toml.js -------------------------------------------------------------------------------- /src/version/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/src/version/yaml.js -------------------------------------------------------------------------------- /test-changelog.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-changelog.config.js -------------------------------------------------------------------------------- /test-file-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-file-2.json -------------------------------------------------------------------------------- /test-file-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-file-content.js -------------------------------------------------------------------------------- /test-file-pre-release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-file-pre-release.json -------------------------------------------------------------------------------- /test-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-file.json -------------------------------------------------------------------------------- /test-file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-file.properties -------------------------------------------------------------------------------- /test-file.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-file.toml -------------------------------------------------------------------------------- /test-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-file.yaml -------------------------------------------------------------------------------- /test-github-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-github-output.js -------------------------------------------------------------------------------- /test-input-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-input-file.md -------------------------------------------------------------------------------- /test-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-output.js -------------------------------------------------------------------------------- /test-pre-changelog-generation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-pre-changelog-generation.js -------------------------------------------------------------------------------- /test-pre-commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TriPSs/conventional-changelog-action/HEAD/test-pre-commit.js --------------------------------------------------------------------------------