From ef13467616869dd223590bb5128d2ff72c5836b3 Mon Sep 17 00:00:00 2001 From: Sebastian Henz <sebastian.henz@ufz.de> Date: Fri, 14 Feb 2020 14:12:55 +0100 Subject: [PATCH] Add merge request template, closes #3 --- .../merge_into_master.md | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .gitlab/merge_request_templates/merge_into_master.md diff --git a/.gitlab/merge_request_templates/merge_into_master.md b/.gitlab/merge_request_templates/merge_into_master.md new file mode 100644 index 0000000..481dfba --- /dev/null +++ b/.gitlab/merge_request_templates/merge_into_master.md @@ -0,0 +1,38 @@ +<!-- +Please fill out this template fully! Remember that the master branch must +always be stable. So take great care in documenting and testing your changes. + +For info on how this package uses versioning see https://r-pkgs.org/description.html#version +--> + +### description +<!-- +Describe or list the changes here. +Comment on any notes that come up during devtools::check(). +--> + +### system details +* RStudio Version: +* R Version: +* OS Version: + +### checklist +<!-- Please check `[x]` the applicable boxes. --> +* [ ] This merge includes bug fixes or changes in the functionality of the package (whether they are user-visible or not). + * [ ] update documentation (if necessary) + * [ ] update NEWS.md + * [ ] update version in DESCRIPTION + * [ ] update date in DESCRIPTION +* [ ] This merge introduces new features. + * [ ] new features are documented + * [ ] new features have tests +* [ ] `devtools::document()` +* [ ] `devtools::check()`: no errors, no warnings + +<!-- +If this merge introduces a new version (major, minor or patch) to the +master branch do these steps after the branch has been successfully merged: +- git tag +- build binary and source package +- gitlab release including the builds +--> \ No newline at end of file -- GitLab