Skip to content

Commit 6ee679d

Browse files
authored
Merge pull request #1818 from nextcloud/add/changelog-generator
2 parents fdd817a + 88918ec commit 6ee679d

4 files changed

Lines changed: 78 additions & 2 deletions

File tree

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Changelog
2+
3+
on:
4+
push:
5+
paths:
6+
- 'package.json'
7+
8+
jobs:
9+
build:
10+
name: Auto generation
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check-out
14+
uses: actions/checkout@v2
15+
16+
- name: Get last released tag
17+
id: last_version
18+
uses: InsonusK/get-latest-release@v1.0.1
19+
with:
20+
myToken: ${{ secrets.GITHUB_TOKEN }}
21+
exclude_types: draft|prerelease
22+
view_top: 1
23+
24+
- name: Get new version
25+
id: future_version
26+
uses: Saionaro/extract-package-version@v1.0.6
27+
28+
- name: Generate changelog
29+
uses: docker://ferrarimarco/github-changelog-generator
30+
with:
31+
args: >
32+
-t ${{ secrets.GITHUB_TOKEN }}
33+
--user nextcloud
34+
--project nextcloud-vue
35+
--no-issues
36+
--no-issues-wo-labels
37+
--max-issues 0
38+
--exclude-labels "duplicate,question,invalid,wontfix,dependencies"
39+
--since-tag ${{ steps.last_version.outputs.tag_name }}
40+
--future-release v${{ steps.future_version.outputs.version }}
41+
--breaking-label "## Breaking changes"
42+
--enhancement-label "## Enhancements"
43+
--bugs-label "## Fixed bugs"
44+
--deprecated-label "## Deprecated"
45+
--removed-label "## Removed"
46+
--security-label "## Security fixes"
47+
--issues-label "## Closed issues"
48+
--pr-label "## Closed pull requests"
49+
50+
- name: Print changelog to console
51+
run: cat CHANGELOG.md
52+
53+
- name: Upload changelog
54+
uses: actions/upload-artifact@v2
55+
with:
56+
name: Changelog
57+
path: CHANGELOG.md

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [v3.9.0](https://github.com/nextcloud/nextcloud-vue/tree/v3.9.0) (2021-04-07)
6+
7+
[Full Changelog](https://github.com/nextcloud/nextcloud-vue/compare/v3.8.0...v3.9.0)
8+
9+
## Enhancements
10+
11+
- Add icon slot to emptycontent [\#1806](https://github.com/nextcloud/nextcloud-vue/pull/1806) ([skjnldsv](https://github.com/skjnldsv))
12+
13+
## Fixed bugs
14+
15+
- Make sure to pass all props and attributes to single-action Actions [\#1809](https://github.com/nextcloud/nextcloud-vue/pull/1809) ([skjnldsv](https://github.com/skjnldsv))
16+
- Ensure that crumbs to hide have correct class [\#1807](https://github.com/nextcloud/nextcloud-vue/pull/1807) ([raimund-schluessler](https://github.com/raimund-schluessler))
17+
- Fix compact sidebar subtitle not visible [\#1767](https://github.com/nextcloud/nextcloud-vue/pull/1767) ([raimund-schluessler](https://github.com/raimund-schluessler))
18+
19+
## Closed pull requests
20+
21+
- Fix translation extraction [\#1776](https://github.com/nextcloud/nextcloud-vue/pull/1776) ([jotoeri](https://github.com/jotoeri))
22+
- Minimize bundled translations [\#1775](https://github.com/nextcloud/nextcloud-vue/pull/1775) ([jotoeri](https://github.com/jotoeri))
23+
524
## [v3.8.0](https://github.com/nextcloud/nextcloud-vue/tree/v3.8.0) (2021-03-26)
625

726
[Full Changelog](https://github.com/nextcloud/nextcloud-vue/compare/v3.7.2...v3.8.0)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nextcloud/vue",
3-
"version": "3.8.0",
3+
"version": "3.9.0",
44
"description": "Nextcloud vue components",
55
"keywords": [
66
"vuejs",

0 commit comments

Comments
 (0)