Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add engine versions for houston with templates #17403

Merged
merged 4 commits into from
May 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 2 additions & 0 deletions .houston/templates/prs.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{{> versions}}
{{> _prs}}
13 changes: 13 additions & 0 deletions .houston/templates/versions.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{{#if (or release.node_version release.npm_version release.mongo_versions)}}

### Engine versions
{{#if release.node_version}}
- Node: `{{ release.node_version }}`
{{/if}}
{{#if release.npm_version}}
- NPM: `{{ release.npm_version }}`
{{/if}}
{{#if release.mongo_versions}}
- MongoDB: `{{ join release.mongo_versions ', ' }}`
{{/if}}
{{/if}}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,10 @@
}
},
"houston": {
"metadata": ".scripts/houstonMetadata.js",
"minTag": "0.55.0-rc.0",
"updateFiles": [
"package.json",
"package-lock.json",
".circleci/snap.sh",
".circleci/update-releases.sh",
".docker/Dockerfile",
Expand Down