From 74bf80c64639debfe1f189850eefef685e1aba05 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Fri, 14 Jul 2023 09:55:05 -0700 Subject: [PATCH] fix docs on hiding columns Signed-off-by: Zack Koppert --- .env-example | 4 ---- README.md | 8 ++++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.env-example b/.env-example index f79f1b8..29a21d2 100644 --- a/.env-example +++ b/.env-example @@ -1,7 +1,3 @@ GH_TOKEN = " " SEARCH_QUERY = "repo:owner/repo is:open is:issue" LABELS_TO_MEASURE = "waiting-for-review,waiting-for-manager" -HIDE_TIME_TO_FIRST_RESPONSE = False -HIDE_TIME_TO_CLOSE = False -HIDE_TIME_TO_ANSWER = False -HIDE_LABEL_METRICS = False diff --git a/README.md b/README.md index d1032fa..9cb3138 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,10 @@ Below are the allowed configuration options: | `GH_TOKEN` | True | | The GitHub Token used to scan the repository. Must have read access to all repository you are interested in scanning. | | `SEARCH_QUERY` | True | | The query by which you can filter issues/prs which must contain a `repo:` entry or an `org:` entry. For discussions, include `type:discussions` in the query. | | `LABELS_TO_MEASURE` | False | | A comma separated list of labels to measure how much time the label is applied. If not provided, no labels durations will be measured. Not compatible with discussions at this time. | -| `HIDE_TIME_TO_FIRST_RESPONSE` | False | False | If set to true, the time to first response will not be displayed in the generated markdown file. | -| `HIDE_TIME_TO_CLOSE` | False | False | If set to true, the time to close will not be displayed in the generated markdown file. | -| `HIDE_TIME_TO_ANSWER` | False | False | If set to true, the time to answer a discussion will not be displayed in the generated markdown file. | -| `HIDE_LABEL_METRICS` | False | False | If set to true, the time in label metrics will not be displayed in the generated markdown file. | +| `HIDE_TIME_TO_FIRST_RESPONSE` | False | | If set to any value, the time to first response will not be displayed in the generated markdown file. | +| `HIDE_TIME_TO_CLOSE` | False | | If set to any value, the time to close will not be displayed in the generated markdown file. | +| `HIDE_TIME_TO_ANSWER` | False | | If set to any value, the time to answer a discussion will not be displayed in the generated markdown file. | +| `HIDE_LABEL_METRICS` | False | | If set to any value, the time in label metrics will not be displayed in the generated markdown file. | ### Example workflows