From 410976d509eb276cbdefd145257f83adafa9738f Mon Sep 17 00:00:00 2001 From: Sarthak Aggarwal Date: Sun, 17 Aug 2025 02:58:32 -0700 Subject: [PATCH] Add test failure template to contributing guide (#2491) We recently introduced a new template to create `test failures` issues from a template. This change makes this template visible in the `CONTRIBUTING.md` file. Also, added a tip to paste the stack trace since outputs of CI links can expire. --------- Signed-off-by: Sarthak Aggarwal --- .github/ISSUE_TEMPLATE/test-failure.md | 4 +++- CONTRIBUTING.md | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/test-failure.md b/.github/ISSUE_TEMPLATE/test-failure.md index ecf85ed82..596410e93 100644 --- a/.github/ISSUE_TEMPLATE/test-failure.md +++ b/.github/ISSUE_TEMPLATE/test-failure.md @@ -19,4 +19,6 @@ A short description of the failure. **Error stack trace** -A relevant stack trace for the test failure. \ No newline at end of file +A relevant stack trace for the test failure. + +> **Tip:** Copy and paste the full stack trace from the CI output into your issue, as CI links may expire over time. \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5e2a71213..53412c9eb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,6 +16,7 @@ The Valkey project is led by a Technical Steering Committee, whose responsibilit * Found a bug? [Report it here](https://github.com/valkey-io/valkey/issues/new?template=bug_report.md&title=%5BBUG%5D) * Valkey crashed? [Submit a crash report here](https://github.com/valkey-io/valkey/issues/new?template=crash_report.md&title=%5BCRASH%5D+%3Cshort+description%3E) * Suggest a new feature? [Post your detailed feature request here](https://github.com/valkey-io/valkey/issues/new?template=feature_request.md&title=%5BNEW%5D) +* Report a test failure? [Report it here](https://github.com/valkey-io/valkey/issues/new?template=test-failure.md) * Want to help with documentation? [Move on to valkey-doc](https://github.com/valkey-io/valkey-doc) * Report a vulnerability? See [SECURITY.md](SECURITY.md)