Skip to content

Commit

Permalink
Merge pull request #1 from jesusvasquez333/add-gren-travis
Browse files Browse the repository at this point in the history
Run GitHub-release-notes on travis on every tag
  • Loading branch information
jesusvasquez333 authored Mar 20, 2020
2 parents 9c7415c + 3b2f7b9 commit 2893746
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .grenrc.yml
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}}"
21 changes: 21 additions & 0 deletions .travis.yml
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

0 comments on commit 2893746

Please sign in to comment.