mirror of https://github.com/grafana/grafana.git
23 lines
689 B
YAML
23 lines
689 B
YAML
name: Changelog generator
|
|
description: Generates and publishes a changelog for the given release version
|
|
inputs:
|
|
target:
|
|
description: Target tag, branch or commit hash for the changelog
|
|
required: true
|
|
previous:
|
|
description: Previous tag, branch or commit hash to start changelog from
|
|
required: false
|
|
github_token:
|
|
description: GitHub token with read/write access to all necessary repositories
|
|
required: true
|
|
output_file:
|
|
description: A file to store resulting changelog markdown
|
|
required: false
|
|
outputs:
|
|
changelog:
|
|
description: Changelog contents between the two given versions in Markdown format
|
|
runs:
|
|
using: 'node20'
|
|
main: 'index.js'
|
|
|