@firestartr/cli 2.7.0-snapshot-6 → 2.7.0-snapshot-8
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/build/index.js
CHANGED
|
@@ -288758,6 +288758,7 @@ class GithubRepositoryChart extends BaseGithubChart {
|
|
|
288758
288758
|
archiveOnDestroy: claim.providers.github.archiveOnDestroy,
|
|
288759
288759
|
allowUpdateBranch: claim.providers.github.allowUpdateBranch,
|
|
288760
288760
|
hasIssues: claim.providers.github.hasIssues,
|
|
288761
|
+
hasWiki: claim.providers.github.hasWiki,
|
|
288761
288762
|
visibility: claim.providers.github.visibility,
|
|
288762
288763
|
defaultBranch: claim.providers.github?.branchStrategy?.defaultBranch,
|
|
288763
288764
|
codeowners: createCodeOwnersData(claim),
|
|
@@ -301648,7 +301649,10 @@ async function runGhProvisioner(data, opts) {
|
|
|
301648
301649
|
let sessionId = null;
|
|
301649
301650
|
let sessionProjectPath = null;
|
|
301650
301651
|
gh_provisioner_src_logger.debug('[gh-provisioner] runGhProvisioner options keys:', Object.keys(opts || {}));
|
|
301651
|
-
|
|
301652
|
+
let tfOp = inferTFOperation(data.mainCr, opts);
|
|
301653
|
+
if (tfOp === 'nothing' && opts.debug) {
|
|
301654
|
+
tfOp = 'debug';
|
|
301655
|
+
}
|
|
301652
301656
|
gh_provisioner_src_logger.info(`[gh-provisioner] Starting runGhProvisioner with tf op ${tfOp}`);
|
|
301653
301657
|
sendWarnings();
|
|
301654
301658
|
let entity;
|
|
@@ -301775,19 +301779,17 @@ function inferTFOperation(cr, opts) {
|
|
|
301775
301779
|
? 'plan'
|
|
301776
301780
|
: opts.planDestroy
|
|
301777
301781
|
? 'plan-destroy'
|
|
301778
|
-
: opts.
|
|
301779
|
-
? '
|
|
301780
|
-
: opts.
|
|
301781
|
-
?
|
|
301782
|
-
|
|
301783
|
-
|
|
301784
|
-
|
|
301785
|
-
|
|
301786
|
-
|
|
301787
|
-
|
|
301788
|
-
|
|
301789
|
-
? 'import'
|
|
301790
|
-
: 'nothing';
|
|
301782
|
+
: opts.delete
|
|
301783
|
+
? 'destroy'
|
|
301784
|
+
: isImport || opts.import
|
|
301785
|
+
? needsReimport
|
|
301786
|
+
? 'import-with-reimport'
|
|
301787
|
+
: 'import'
|
|
301788
|
+
: opts.create
|
|
301789
|
+
? 'apply'
|
|
301790
|
+
: opts.update
|
|
301791
|
+
? 'apply'
|
|
301792
|
+
: 'nothing';
|
|
301791
301793
|
//opts.import && opts.skipPlan && isImport
|
|
301792
301794
|
// ? 'IMPORT_SKIP_PLAN'
|
|
301793
301795
|
return operation;
|
|
@@ -303558,9 +303560,9 @@ const crs_analyzerSubcommand = {
|
|
|
303558
303560
|
};
|
|
303559
303561
|
|
|
303560
303562
|
;// CONCATENATED MODULE: ./package.json
|
|
303561
|
-
const package_namespaceObject = JSON.parse('{"i8":"2.7.0-snapshot-
|
|
303563
|
+
const package_namespaceObject = JSON.parse('{"i8":"2.7.0-snapshot-8"}');
|
|
303562
303564
|
;// CONCATENATED MODULE: ../../package.json
|
|
303563
|
-
const package_namespaceObject_1 = {"i8":"2.6.
|
|
303565
|
+
const package_namespaceObject_1 = {"i8":"2.6.3"};
|
|
303564
303566
|
;// CONCATENATED MODULE: ./src/subcommands/index.ts
|
|
303565
303567
|
|
|
303566
303568
|
|
|
@@ -21,6 +21,7 @@ export interface IGithubRepositoryClaim extends IComponentClaim {
|
|
|
21
21
|
archiveOnDestroy: boolean;
|
|
22
22
|
allowUpdateBranch: boolean;
|
|
23
23
|
hasIssues: boolean;
|
|
24
|
+
hasWiki: boolean;
|
|
24
25
|
features: IClaimInstalledFeature[];
|
|
25
26
|
pages: IRepositoryPage;
|
|
26
27
|
branchStrategy: IComponentClaimBranchStrategy;
|