-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
34 lines (33 loc) · 1004 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Changelog
description: Parses changelog milestones
inputs:
token:
description: Github token
required: true
repo:
description: Repo to fetch pull requests from. In format "owner/repo".
required: true
milestone:
description: Milestone title. Must be in format vX.Y.Z (e.g. "v1.39.45").
required: true
allowed_sections:
description: |
Sections config for the validation of possible values. Optional. Accepts comma-separated or newline-sepatated strings.
Forced impact_level can be added with a colon. Example:
chrony
ci:low
docs
node-manager
required: false
outputs:
release_yaml:
description: Changelog YAML for the patch release
release_markdown:
description: Changelog markdown for the patch release
branch_markdown:
description: Changelog markdown for the minor release branch
minor_version:
description: Minor version string, e.g. "v1.39"
runs:
using: "node20"
main: "dist/index.js"