From 728575bc2c5d1fad1ccb43c781c5b5f811340f13 Mon Sep 17 00:00:00 2001 From: Andreas Sommer Date: Thu, 12 Dec 2024 13:00:45 +0100 Subject: [PATCH] Describe in PR template how to specify the previous release --- .github/pull_request_template.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f7598ab0f..2c82b1638 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -19,6 +19,18 @@ To trigger the E2E test for each new Release added in this PR, add a comment wit `/run releases-test-suites` +If your release is a new _patch_ release for an older major release, you need to specify the previous release for use in upgrade tests, for example for `25.1.2` (exists) to `25.1.3` (added in your PR): + +`/run releases-test-suites PREVIOUS_RELEASE=25.1.2` + +If your release is a new _minor_ release for an older major release, e.g. `25.3.0` (exists) to `25.4.0` (added in your PR), it works the same way: + +`/run releases-test-suites PREVIOUS_RELEASE=25.3.0` + +You can also limit which tests are run: + +`/run releases-test-suites TARGET_SUITES=./providers/capa/standard` + If you want to trigger conformance tests, you can do so by adding a comment similar to the following: `/run conformance-tests PROVIDER=capa RELEASE_VERSION=29.1.0`