-
Notifications
You must be signed in to change notification settings - Fork 223
38 lines (32 loc) · 1019 Bytes
/
changelog.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
35
36
37
38
name: Changelog
# Controls when the action will run.
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Force bash to apply pipefail option so pipeline failures aren't masked
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Changelog
uses: heinrichreimer/github-changelog-generator-action@v2.1.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
issuesLabel: "### Closed issues"
breakingLabel: "### Breaking changes"
enhancementLabel: "### Implemented enhancements"
bugsLabel: "### Fixed bugs"
deprecatedLabel: "### Deprecated"
removedLabel: "### Removed"
securityLabel: "### Security fixes"
pullRequests: false
author: false
- name: "Upload changelog"
uses: actions/upload-artifact@v1.0.0
with:
name: "Changelog"
path: CHANGELOG.md