replicas-cli 0.2.337 → 0.2.338
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/dist/index.mjs +19 -9
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9597,7 +9597,7 @@ var HOOK_EXEC_MAX_BUFFER_BYTES = 10 * 1024 * 1024;
|
|
|
9597
9597
|
var REPLICAS_CONFIG_FILENAMES = ["replicas.json", "replicas.yaml", "replicas.yml"];
|
|
9598
9598
|
|
|
9599
9599
|
// ../shared/src/cli-version.ts
|
|
9600
|
-
var CLI_VERSION = "0.2.
|
|
9600
|
+
var CLI_VERSION = "0.2.338";
|
|
9601
9601
|
|
|
9602
9602
|
// ../shared/src/engine/environment.ts
|
|
9603
9603
|
var DESKTOP_NOVNC_PORT = 6080;
|
|
@@ -9723,6 +9723,11 @@ var REPO_FILTER_PARAM = {
|
|
|
9723
9723
|
label: "Filter by repository",
|
|
9724
9724
|
type: "repository_ids"
|
|
9725
9725
|
};
|
|
9726
|
+
var EXCLUDED_ACTORS_PARAM = {
|
|
9727
|
+
id: "excluded_actors",
|
|
9728
|
+
label: "Exclude users",
|
|
9729
|
+
type: "excluded_actors"
|
|
9730
|
+
};
|
|
9726
9731
|
var GROUP_PR_EVENTS_PARAM = {
|
|
9727
9732
|
id: "group_pr_events",
|
|
9728
9733
|
label: "Group PR events to same workspace",
|
|
@@ -9734,10 +9739,10 @@ var GITHUB_TRIGGER = {
|
|
|
9734
9739
|
description: "Trigger on repository events",
|
|
9735
9740
|
icon: "github",
|
|
9736
9741
|
events: [
|
|
9737
|
-
{ id: "pull_request.opened", label: "PR opened", parameters: [REPO_FILTER_PARAM, GROUP_PR_EVENTS_PARAM] },
|
|
9738
|
-
{ id: "pull_request.synchronize", label: "PR updated (new commits)", parameters: [REPO_FILTER_PARAM, GROUP_PR_EVENTS_PARAM] },
|
|
9739
|
-
{ id: "pull_request.merged", label: "PR merged", parameters: [REPO_FILTER_PARAM] },
|
|
9740
|
-
{ id: "pull_request.closed", label: "PR closed", parameters: [REPO_FILTER_PARAM] }
|
|
9742
|
+
{ id: "pull_request.opened", label: "PR opened", parameters: [REPO_FILTER_PARAM, EXCLUDED_ACTORS_PARAM, GROUP_PR_EVENTS_PARAM] },
|
|
9743
|
+
{ id: "pull_request.synchronize", label: "PR updated (new commits)", parameters: [REPO_FILTER_PARAM, EXCLUDED_ACTORS_PARAM, GROUP_PR_EVENTS_PARAM] },
|
|
9744
|
+
{ id: "pull_request.merged", label: "PR merged", parameters: [REPO_FILTER_PARAM, EXCLUDED_ACTORS_PARAM] },
|
|
9745
|
+
{ id: "pull_request.closed", label: "PR closed", parameters: [REPO_FILTER_PARAM, EXCLUDED_ACTORS_PARAM] }
|
|
9741
9746
|
]
|
|
9742
9747
|
};
|
|
9743
9748
|
|
|
@@ -9747,6 +9752,11 @@ var REPO_FILTER_PARAM2 = {
|
|
|
9747
9752
|
label: "Filter by project",
|
|
9748
9753
|
type: "repository_ids"
|
|
9749
9754
|
};
|
|
9755
|
+
var EXCLUDED_ACTORS_PARAM2 = {
|
|
9756
|
+
id: "excluded_actors",
|
|
9757
|
+
label: "Exclude users",
|
|
9758
|
+
type: "excluded_actors"
|
|
9759
|
+
};
|
|
9750
9760
|
var GROUP_MR_EVENTS_PARAM = {
|
|
9751
9761
|
id: "group_pr_events",
|
|
9752
9762
|
label: "Group MR events to same workspace",
|
|
@@ -9758,10 +9768,10 @@ var GITLAB_TRIGGER = {
|
|
|
9758
9768
|
description: "Trigger on project events",
|
|
9759
9769
|
icon: "gitlab",
|
|
9760
9770
|
events: [
|
|
9761
|
-
{ id: "merge_request.opened", label: "MR opened", parameters: [REPO_FILTER_PARAM2, GROUP_MR_EVENTS_PARAM] },
|
|
9762
|
-
{ id: "merge_request.updated", label: "MR updated (new commits)", parameters: [REPO_FILTER_PARAM2, GROUP_MR_EVENTS_PARAM] },
|
|
9763
|
-
{ id: "merge_request.merged", label: "MR merged", parameters: [REPO_FILTER_PARAM2] },
|
|
9764
|
-
{ id: "merge_request.closed", label: "MR closed", parameters: [REPO_FILTER_PARAM2] }
|
|
9771
|
+
{ id: "merge_request.opened", label: "MR opened", parameters: [REPO_FILTER_PARAM2, EXCLUDED_ACTORS_PARAM2, GROUP_MR_EVENTS_PARAM] },
|
|
9772
|
+
{ id: "merge_request.updated", label: "MR updated (new commits)", parameters: [REPO_FILTER_PARAM2, EXCLUDED_ACTORS_PARAM2, GROUP_MR_EVENTS_PARAM] },
|
|
9773
|
+
{ id: "merge_request.merged", label: "MR merged", parameters: [REPO_FILTER_PARAM2, EXCLUDED_ACTORS_PARAM2] },
|
|
9774
|
+
{ id: "merge_request.closed", label: "MR closed", parameters: [REPO_FILTER_PARAM2, EXCLUDED_ACTORS_PARAM2] }
|
|
9765
9775
|
]
|
|
9766
9776
|
};
|
|
9767
9777
|
|