@pagopa/dx-cli 0.15.4 → 0.15.5
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.
|
@@ -125,14 +125,14 @@ async function updateDXWorkflows() {
|
|
|
125
125
|
// Update the js_code_review workflow to use the latest commit sha
|
|
126
126
|
const results = await replaceInFile({
|
|
127
127
|
allowEmptyPaths: true,
|
|
128
|
-
files: [".github/workflows/*.yaml"],
|
|
128
|
+
files: [".github/workflows/*.yaml", ".github/workflows/*.yml"],
|
|
129
129
|
processor: updateJSCodeReviewJob(sha),
|
|
130
130
|
});
|
|
131
131
|
const ignore = results.filter((r) => r.hasChanged).map((r) => r.file);
|
|
132
132
|
// Update the legacy deployment workflow to release-azure-appsvc-v1.yaml
|
|
133
133
|
await replaceInFile({
|
|
134
134
|
allowEmptyPaths: true,
|
|
135
|
-
files: [".github/workflows/*.yaml"],
|
|
135
|
+
files: [".github/workflows/*.yaml", ".github/workflows/*.yml"],
|
|
136
136
|
ignore,
|
|
137
137
|
processor: migrateWorkflow(sha),
|
|
138
138
|
});
|