Skip to content

Commit

Permalink
Merge pull request #820 from ivmartel/789-wiki-to-doc
Browse files Browse the repository at this point in the history
789 wiki to doc
  • Loading branch information
ivmartel authored Dec 13, 2020
2 parents d8d3375 + ff69e88 commit 027024b
Show file tree
Hide file tree
Showing 17 changed files with 4,051 additions and 110 deletions.
14 changes: 14 additions & 0 deletions .grenrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
"dataSource": "issues",
"ignore-issues-with": ["duplicate", "invalid", "question", "wontfix"],
"groupBy": {
"Fixed": ["bug"],
"Added": ["enhancement"],
"Dependencies": ["dependencies"]
},
"template": {
release: "## [{{release}}] - {{date}}\n{{body}}",
group: "\n### {{heading}}\n",
issue: "- {{name}} [{{text}}]({{url}})",
}
}
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ script:
after_success:
# send coverage to coveralls
- grunt coveralls
# update gh-page only if not a pull request and if branch master or develop
# update gh-page only if not a pull request and if branch master
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
if [ "$TRAVIS_BRANCH" == "master" ] || [ "$TRAVIS_BRANCH" == "develop" ]; then
if [ "$TRAVIS_BRANCH" == "master" ]; then
chmod +x ./resources/scripts/update-gh-pages.sh; "./resources/scripts/update-gh-pages.sh";
else echo "Not deploying artifacts for branch $TRAVIS_BRANCH"; fi
else echo "Not deploying artifacts for pull request"; fi
Loading

0 comments on commit 027024b

Please sign in to comment.