Skip to content

Return all status changes in the change file function #35379

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion eng/tools/spec-gen-sdk-runner/src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { spawn, spawnSync, exec } from "node:child_process";

Check failure on line 1 in eng/tools/spec-gen-sdk-runner/src/utils.ts

View workflow job for this annotation

GitHub Actions / Protected Files

File 'eng/tools/spec-gen-sdk-runner/src/utils.ts' should only be updated by the Azure SDK team. If intentional, the PR may be merged by the Azure SDK team via bypassing the branch protections.
import path from "node:path";
import fs from "node:fs";
import { LogLevel, logMessage } from "./log.js";
Expand Down Expand Up @@ -177,8 +177,9 @@
specRepoPath: string,
baseCommitish: string = "HEAD^",
targetCommitish: string = "HEAD",
diffFilter: string = "d",
): string[] | undefined {
// set diff filter to include added, copied, modified, deleted, renamed, and type changed files
const diffFilter = "ACMDRT";
const scriptPath = path.resolve(specRepoPath, "eng/scripts/ChangedFiles-Functions.ps1");
const args = [
"-Command",
Expand Down
Loading