Skip to content

Commit

Permalink
[ARMAutoSignOff] Exclude examples (#32549)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeharder authored Feb 10, 2025
1 parent 8a05923 commit ab2a9e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/src/changed-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export async function getChangedResourceManagerSwaggerFiles(
"HEAD",
"",
);
const changedResourceManagerSwaggerFiles = changedSwaggerFiles.filter((f) =>
f.includes("/resource-manager/"),
const changedResourceManagerSwaggerFiles = changedSwaggerFiles.filter(
(f) => f.includes("/resource-manager/") && !f.includes("/examples/"),
);
core.info(
`Changed files containing path '/resource-manager/': ${changedResourceManagerSwaggerFiles}`,
Expand Down

0 comments on commit ab2a9e7

Please sign in to comment.