From c4d344e85286853242d2af8ac91d9bdd11fe0c9c Mon Sep 17 00:00:00 2001 From: Glib Briia Date: Wed, 23 Mar 2022 12:35:42 +0200 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 02ee504..685610a 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ Usage: assertthat-bdd-report [options] --jsonReportFolder -i INCLUDE_REGEX, Regex to search for cucumber reports - default .*.json --jsonReportIncludePattern + -j, --jql JQL_FILTER Jql filtering of Jira tickets to update with test results -x, --proxy PROXY_URL proxy url to connect to Jira -h, --help Show help -v, --version Show version @@ -108,7 +109,9 @@ task :upload_report do #Json report folder - default ./reports jsonReportFolder: "reports", #Regex to search for cucumber reports - default .*.json - jsonReportIncludePattern: ".*/cucumber.json" + jsonReportIncludePattern: ".*/cucumber.json", + #Optional - all issues will be updated by default - should be a valid JQL + jql: 'project = XX AND key in (\'XXX-1\')' ) end ```