-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bumped reng to latest version (2.0.0)
Signed-off-by: Yoriyasu Yano <[email protected]>
- Loading branch information
1 parent
76a8633
commit e3d6667
Showing
3 changed files
with
51 additions
and
34 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ import { assert } from "https://deno.land/[email protected]/testing/asserts.ts"; | |
import { | ||
compileRuleFn, | ||
emptyChangeSetMetadata, | ||
IGitHubRepository, | ||
patchFromGitHubPullRequest, | ||
Repository, | ||
RuleFnSourceLang, | ||
RuleLogMode, | ||
runRule, | ||
} from "npm:@fensak-io/reng@^1.3.0"; | ||
} from "npm:@fensak-io/reng@^2.0.0"; | ||
import { Octokit } from "npm:@octokit/rest@^20.0.0"; | ||
|
||
const __dirname = new URL(".", import.meta.url).pathname; | ||
|
@@ -18,7 +18,7 @@ const ruleFn = compileRuleFn( | |
const octokit = new Octokit({ | ||
auth: Deno.env.get("GITHUB_API_TOKEN"), | ||
}); | ||
const testRepo: IGitHubRepository = { | ||
const testRepo: Repository = { | ||
owner: "fensak-io", | ||
name: "dotfensak-deno-template", | ||
}; | ||
|