Skip to content

Commit

Permalink
chore: Add check rules to JS client
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Jan 27, 2025
1 parent 9632177 commit 6961c36
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,14 @@ func main() {
if err = StandardRepositoryAccess(ctx, "holochain-client-js", jsClient); err != nil {
return err
}
jsClientDefaultRepositoryRulesetArgs := DefaultRepositoryRulesetArgs(jsClient, nil)
if _, err = github.NewRepositoryRuleset(ctx, "holochain-client-js-default", &jsClientDefaultRepositoryRulesetArgs); err != nil {
return err
}
jsClientReleaseRepositoryRulesetArgs := ReleaseRepositoryRulesetArgs(jsClient, nil)
if _, err = github.NewRepositoryRuleset(ctx, "holochain-client-js-release", &jsClientReleaseRepositoryRulesetArgs); err != nil {
return err
}

//
// Holochain Rust client
Expand Down

0 comments on commit 6961c36

Please sign in to comment.