From 7c3dbed3b71d23fb059a707909a067baae03e84e Mon Sep 17 00:00:00 2001 From: Kalaiyarasiganeshalingam Date: Tue, 5 Dec 2023 11:41:59 +0530 Subject: [PATCH] Remove issue_template --- ballerina/tests/test.bal | 7 +++++++ issue_template.md | 18 ------------------ 2 files changed, 7 insertions(+), 18 deletions(-) delete mode 100644 issue_template.md diff --git a/ballerina/tests/test.bal b/ballerina/tests/test.bal index f97cd7a..e0d0c97 100644 --- a/ballerina/tests/test.bal +++ b/ballerina/tests/test.bal @@ -14,9 +14,16 @@ // specific language governing permissions and limitations // under the License. +import ballerina/os; import ballerina/log; import ballerina/test; +configurable string clientId = os:getEnv("CLIENT_ID"); +configurable string clientSecret = os:getEnv("CLIENT_SECRET"); +configurable string refreshToken = os:getEnv("REFRESH_TOKEN"); +configurable string refreshUrl = os:getEnv("REFRESH_URL"); +configurable string workbookIdOrPath = os:getEnv("WORKBOOK_PATH"); + ConnectionConfig configuration = { auth: { clientId: clientId, diff --git a/issue_template.md b/issue_template.md deleted file mode 100644 index 757e13e..0000000 --- a/issue_template.md +++ /dev/null @@ -1,18 +0,0 @@ -**Description:** - - -**Suggested Labels:** - - -**Suggested Assignees:** - - -**Affected Product Version:** - -**OS, DB, other environment details and versions:** - -**Steps to reproduce:** - - -**Related Issues:** - \ No newline at end of file