reposets 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/500.js +5 -10
- package/package.json +2 -2
package/500.js
CHANGED
|
@@ -704,16 +704,11 @@ const RulesetSchema = Schema.Union(BranchRulesetSchema, TagRulesetSchema).annota
|
|
|
704
704
|
identifier: "Ruleset",
|
|
705
705
|
title: "Repository ruleset",
|
|
706
706
|
description: "A set of rules to apply when specified conditions are met",
|
|
707
|
-
jsonSchema: {
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
links: {
|
|
713
|
-
key: "https://github.com/spencerbeggs/reposets/blob/main/docs/rulesets.md"
|
|
714
|
-
}
|
|
715
|
-
})
|
|
716
|
-
}
|
|
707
|
+
jsonSchema: taplo({
|
|
708
|
+
links: {
|
|
709
|
+
key: "https://github.com/spencerbeggs/reposets/blob/main/docs/rulesets.md"
|
|
710
|
+
}
|
|
711
|
+
})
|
|
717
712
|
});
|
|
718
713
|
function buildRulesetPayload(ruleset) {
|
|
719
714
|
const rules = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reposets",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "CLI tool to sync GitHub repo settings, secrets and rulesets across personal repositories",
|
|
6
6
|
"keywords": [
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"effect": "^3.21.1",
|
|
55
55
|
"smol-toml": ">=1.6.1",
|
|
56
56
|
"tweetnacl": "^1.0.3",
|
|
57
|
-
"xdg-effect": "^0.3.
|
|
57
|
+
"xdg-effect": "^0.3.3"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
60
60
|
"node": ">=20.0.0"
|