Skip to content

Commit

Permalink
Merge pull request #44 from lifeomic/publish-patch
Browse files Browse the repository at this point in the history
fix: NO-TICKET - bogus change to trigger first release under semantic…
  • Loading branch information
austin-rausch authored Oct 19, 2021
2 parents d273f62 + 2f9dab2 commit 4d493ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/lifeomic-probot.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
enforceSemanticCommits: false
enforceSemanticCommits: true
4 changes: 1 addition & 3 deletions test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 4d493ab

Please sign in to comment.