-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from jesusvasquez333/add-gren-travis
Run GitHub-release-notes on travis on every tag
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
dataSource: "prs" | ||
onlyMilestones: false | ||
# Group the release notes in tow categories, | ||
# based on the PR labels 'bug' and 'enhancement' | ||
groupBy: | ||
"Bug fixes:": | ||
- "bug" | ||
"Enhancements:": | ||
- "enhancement" | ||
template: | ||
"issue": "- {{url}} {{name}}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
os: linux | ||
|
||
dist: bionic | ||
|
||
language: node_js | ||
|
||
node_js: | ||
- 8 | ||
|
||
stages: | ||
- name: generate_release_notes | ||
if: tag IS present | ||
|
||
jobs: | ||
include: | ||
- stage: generate_release_notes | ||
name: "Generate Release Notes" | ||
before_script: | ||
- npm install github-release-notes -g | ||
script: | ||
- gren release |