From 0cb305a2f68a9c5e128554b0df9f7df2f44709aa Mon Sep 17 00:00:00 2001 From: Maxime Orefice Date: Mon, 2 Mar 2020 14:47:23 -0500 Subject: [PATCH] Add release template issue --- .gitlab/issue_templates/Releasing.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab/issue_templates/Releasing.md diff --git a/.gitlab/issue_templates/Releasing.md b/.gitlab/issue_templates/Releasing.md new file mode 100644 index 0000000..d040cb3 --- /dev/null +++ b/.gitlab/issue_templates/Releasing.md @@ -0,0 +1,12 @@ +### Summary + +Release docker image for version `(specify version)` + + + +### Tasks + +- [ ] Push a branch based off of `master` and name it after the version to be released (e.g `0.85.6` or `0.85.6-gitlab.1`). Refer to [the changelog](CHANGELOG.md) for the latest version to release. This should then trigger the `release-version` CI job to run. +- [ ] Once the docker image is released, open an MR to bump the version in the [Code Quality vendored template](https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/ci/templates/Jobs/Code-Quality.gitlab-ci.yml#L10) and [reports.gitlab-ci.yml](https://gitlab.com/gitlab-org/gitlab/blob/master/.gitlab/ci/reports.gitlab-ci.yml#L23). Here's a [example](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/22659). + +/label ~release -- GitLab