218 lines
8.2 KiB
Markdown
218 lines
8.2 KiB
Markdown
# Conventional Changelog action
|
|
|
|
This action will bump version, tag commit and generate a changelog with conventional commits.
|
|
|
|
## Inputs
|
|
|
|
- **Required** `github-token`: Github token.
|
|
- **Optional** `git-message`: Commit message that is used when committing the changelog.
|
|
- **Optional** `git-user-name`: The git user.name to use for the commit. Default `Conventional Changelog Action`
|
|
- **Optional** `git-user-email`: The git user.email to use for the commit. Default `conventional.changelog.action@github.com`
|
|
- **Optional** `git-pull-method`: The git pull method used when pulling all changes from remote. Default `--ff-only`
|
|
- **Optional** `preset`: Preset that is used from conventional commits. Default `angular`.
|
|
- **Optional** `tag-prefix`: Prefix for the git tags. Default `v`.
|
|
- **Optional** `output-file`: File to output the changelog to. Default `CHANGELOG.md`, when providing `'false'` no file will be generated / updated.
|
|
- **Optional** `release-count`: Number of releases to preserve in changelog. Default `5`, use `0` to regenerate all.
|
|
- **Optional** `version-file`: The path to the file that contains the version to bump. Default `./package.json`.
|
|
- **Optional** `version-path`: The place inside the version file to bump. Default `version`.
|
|
- **Optional** `skip-on-empty`: Boolean to specify if you want to skip empty release (no-changelog generated). This case occured when you push `chore` commit with `angular` for example. Default `'true'`.
|
|
- **Optional** `skip-version-file`: Do not update the version file. Default `'false'`.
|
|
- **Optional** `skip-commit`: Do create a release commit. Default `'false'`.
|
|
- **Optional** `pre-commit`: Path to the pre-commit script file. No hook by default.
|
|
- **Optional** `fallback-version`: The fallback version, if no older one can be detected, or if it is the first one. Default `'0.1.0'`
|
|
- **Optional** `config-file-path`: Path to the conventional changelog config file. If set, the preset setting will be ignored
|
|
|
|
### Pre-Commit hook
|
|
|
|
> Function in a specified file will be run right before the git-add-git-commit phase, when the next
|
|
> version is already known and a new changelog has been generated. You can run any chores across your
|
|
> repository that should be added and commited with the release commit.
|
|
|
|
Specified path could be relative or absolute. If it is relative, then it will be based on the `GITHUB_WORKSPACE` path.
|
|
|
|
Script should:
|
|
|
|
- be a CommonJS module
|
|
- have a single export: `exports.preCommit = (props) => { /* ... */ }`
|
|
- not have any return value
|
|
- be bundled (contain all dependencies in itself, just like the bundled webapp)
|
|
|
|
`preCommit` function can be `async`.
|
|
|
|
Following props will be passed to the function as a single parameter:
|
|
|
|
```typescript
|
|
interface Props {
|
|
tag: string; // Next tag e.g. v1.12.3
|
|
version: string; // Next version e.g. 1.12.3
|
|
}
|
|
|
|
export function preCommit(props: Props): void {}
|
|
```
|
|
|
|
A bunch of useful environment variables are available to the script with `process.env`. See [docs.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables](https://docs.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables) to learn more.
|
|
|
|
### Config-File-Path
|
|
A config file to define the conventional commit settings. Use it if you need to override values like `issuePrefix` or `issueUrlFormat`. If you set a `config-file-path`, the `preset` setting will be ignored. Therefore use an existing config and override the values you want to adjust.
|
|
|
|
example:
|
|
```javascript
|
|
'use strict'
|
|
const config = require('conventional-changelog-conventionalcommits');
|
|
|
|
module.exports = config({
|
|
"issuePrefixes": ["TN-"],
|
|
"issueUrlFormat": "https://jira.example.com/browse/{{prefix}}{{id}}"
|
|
})
|
|
```
|
|
The specified path can be relative or absolute. If it is relative, then it will be based on the `GITHUB_WORKSPACE` path.
|
|
|
|
Make sure to install all required packages in the workflow before executing this action.
|
|
|
|
## Outputs
|
|
|
|
- `changelog`: The generated changelog for the new version.
|
|
- `clean_changelog`: The generated changelog for the new version without the version name in it (Better for Github releases)
|
|
- `version`: The new version.
|
|
- `tag`: The name of the generated tag.
|
|
- `skipped`: Boolean (`'true'` or `'false'`) specifying if this step have been skipped
|
|
|
|
## Example usages
|
|
|
|
Uses all the defaults
|
|
|
|
```yaml
|
|
- name: Conventional Changelog Action
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
with:
|
|
github-token: ${{ secrets.github_token }}
|
|
```
|
|
|
|
Overwrite everything
|
|
|
|
```yaml
|
|
- name: Conventional Changelog Action
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
with:
|
|
github-token: ${{ secrets.github_token }}
|
|
git-message: 'chore(release): {version}'
|
|
git-user-name: 'Awesome Changelog Action'
|
|
git-user-email: 'awesome_changelog@github.actions.com'
|
|
preset: 'angular'
|
|
tag-prefix: 'v'
|
|
output-file: 'MY_CUSTOM_CHANGELOG.md'
|
|
release-count: '10'
|
|
version-file: './my_custom_version_file.json' // or .yml, .yaml, .toml
|
|
version-path: 'path.to.version'
|
|
skip-on-empty: 'false'
|
|
skip-version-file: 'false'
|
|
skip-commit: 'false'
|
|
```
|
|
|
|
No file changelog
|
|
|
|
```yaml
|
|
- name: Conventional Changelog Action
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
with:
|
|
github-token: ${{ secrets.github_token }}
|
|
output-file: "false"
|
|
```
|
|
|
|
Tag only
|
|
|
|
```yaml
|
|
- name: Conventional Changelog Action
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
with:
|
|
github-token: ${{ secrets.github_token }}
|
|
skip-commit: "true"
|
|
```
|
|
|
|
Use a custom file for versioning
|
|
|
|
```yaml
|
|
- name: Conventional Changelog Action
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
with:
|
|
github-token: ${{ secrets.github_token }}
|
|
version-file: "my-custom-file.yaml"
|
|
```
|
|
|
|
Use a pre-commit hook
|
|
|
|
```yaml
|
|
- name: Conventional Changelog Action
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
with:
|
|
github-token: ${{ secrets.github_token }}
|
|
pre-commit: some/path/pre-commit.js
|
|
```
|
|
|
|
Github releases
|
|
|
|
```yaml
|
|
- name: Conventional Changelog Action
|
|
id: changelog
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
with:
|
|
github-token: ${{ secrets.github_token }}
|
|
output-file: "false"
|
|
|
|
- name: Create Release
|
|
uses: actions/create-release@v1
|
|
if: ${{ steps.changelog.outputs.skipped == 'false' }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.github_token }}
|
|
with:
|
|
tag_name: ${{ steps.changelog.outputs.tag }}
|
|
release_name: ${{ steps.changelog.outputs.tag }}
|
|
body: ${{ steps.changelog.outputs.clean_changelog }}
|
|
```
|
|
|
|
## Development
|
|
|
|
If you'd like to contribute to this project, all you need to do is clone and install [act](https://github.com/nektos/act) this project and run:
|
|
|
|
> Make sure that `main: 'src/index.js'` is updated to `main: '../src/index.js'` inside the `action.yml`
|
|
> Note: The image used is 18 gb!
|
|
|
|
```shell
|
|
$ yarn install
|
|
|
|
# To run / test json versioning
|
|
$ act -j test-json -P ubuntu-latest=nektos/act-environments-ubuntu:18.04 -s github_token=fake-token
|
|
|
|
# To run / test git versioning
|
|
$ act -j test-git -P ubuntu-latest=nektos/act-environments-ubuntu:18.04 -s github_token=fake-token
|
|
|
|
# To run / test git fallback versioning
|
|
$ act -j test-git-fallback -P ubuntu-latest=nektos/act-environments-ubuntu:18.04 -s github_token=fake-token
|
|
|
|
# To run / test yaml versioning
|
|
$ act -j test-yaml -P ubuntu-latest=nektos/act-environments-ubuntu:18.04 -s github_token=fake-token
|
|
|
|
# To run / test toml versioning
|
|
$ act -j test-toml -P ubuntu-latest=nektos/act-environments-ubuntu:18.04 -s github_token=fake-token
|
|
|
|
# To run / test empty / new files test
|
|
$ act -j test-[json/toml/yaml]-[empty/new] -P ubuntu-latest=nektos/act-environments-ubuntu:18.04 -s github_token=fake-token
|
|
|
|
# To run pre-commit test
|
|
$ act -j test-pre-commit -P ubuntu-latest=nektos/act-environments-ubuntu:18.04 -s github_token=fake-token
|
|
|
|
# To run / multiple files test
|
|
$ act -j multiple-files -P ubuntu-latest=nektos/act-environments-ubuntu:18.04 -s github_token=fake-token
|
|
|
|
# To run / config file path test
|
|
$ act -j test-config-file-path -P ubuntu-latest=nektos/act-environments-ubuntu:18.04 -s github_token=fake-token
|
|
```
|
|
|
|
## [License](./LICENSE)
|
|
|
|
Conventional Changelog Action is [MIT licensed](./LICENSE).
|
|
|
|
## Collaboration
|
|
|
|
If you have questions or [issues](https://github.com/TriPSs/conventional-changelog-action/issues), please [open an issue](https://github.com/TriPSs/conventional-changelog-action/issues/new)!
|