From 1e557561ae4958ca23a21d82c20b5b106603f953 Mon Sep 17 00:00:00 2001 From: Austin Rausch Date: Tue, 19 Oct 2021 15:25:49 -0400 Subject: [PATCH 1/2] fix: NO-TICKET - bogus change to trigger first release under semantic versioning. --- test/index.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/index.test.ts b/test/index.test.ts index a576e18..e3f4334 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -4,9 +4,7 @@ import { AttemptOptions, AttemptContext } from '../src'; -function almostEqual (a: number, b: number, tolerance: number) { - return Math.abs(a - b) <= tolerance; -} +const almostEqual = (a: number, b: number, tolerance: number) => Math.abs(a - b) <= tolerance; const DELAY_TOLERANCE = parseInt(process.env.DELAY_TOLERANCE || '', 10) || 100; From 2f9dab21ef4c90bf693c07dd13b0b6c6ad371d8c Mon Sep 17 00:00:00 2001 From: Austin Rausch Date: Tue, 19 Oct 2021 15:26:31 -0400 Subject: [PATCH 2/2] fix: NO-TICKET - enable enforced semantic commits. --- .github/lifeomic-probot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/lifeomic-probot.yml b/.github/lifeomic-probot.yml index 20a0b27..505881d 100644 --- a/.github/lifeomic-probot.yml +++ b/.github/lifeomic-probot.yml @@ -1 +1 @@ -enforceSemanticCommits: false +enforceSemanticCommits: true