Skip to content

Commit

Permalink
Merge branch 'add-models' of https://github.com/santiagxf/azure-rest-…
Browse files Browse the repository at this point in the history
…api-specs into add-models
  • Loading branch information
santiagxf committed Jan 15, 2025
2 parents 24a2dbc + ce185ab commit 7431cf8
Show file tree
Hide file tree
Showing 120 changed files with 18,471 additions and 899 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/SDK-Suppressions-Label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ jobs:
run: |
. eng/scripts/ChangedFiles-Functions.ps1
$changedFiles = @(Get-ChangedFiles)
echo "PR Changed files: $changedFiles"
Add-Content -Path $env:GITHUB_OUTPUT -Value "changedFiles=$changedFiles"
$changedFilesArray = $changedFiles -split ' '
$yamlFilesArray = $changedFilesArray | Where-Object { $_ -match 'sdk-suppressions\.yaml$' }
$yamlFiles = $yamlFilesArray -join ' '
echo "PR Changed sdk-suppressions.yaml files: $yamlFiles"
Add-Content -Path $env:GITHUB_OUTPUT -Value "changedFiles=$yamlFiles"
- name: Get GitHub PullRequest Context
uses: actions/github-script@v7
Expand Down
11 changes: 9 additions & 2 deletions cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"ubinary",
"umls"
],
"allowCompoundWords ": true,
"dictionaryDefinitions": [
{
"name": "custom-words",
Expand Down Expand Up @@ -55,7 +56,7 @@
"filename": "**/specification/playwrighttesting/**/*",
"words": [
"microsoftplaywrighttesting",
"playwrighttesting",
"playwrighttesting"
]
},
{
Expand Down Expand Up @@ -427,6 +428,12 @@
"Regenerte"
]
},
{
"filename": "**/specification/keyvault/resource-manager/readme.go.md",
"words": [
"modelerfour"
]
},
{
"filename": "**/specification/eventgrid/data-plane/Microsoft.Communication/stable/2018-01-01/AzureCommunicationServices.json",
"words": [
Expand Down Expand Up @@ -1806,7 +1813,7 @@
]
},
{
"filename": "**/specification/compute/resource-manager/readme.python.md",
"filename": "**/specification/**/readme.python.md",
"words": [
"multiapiscript",
"modelerfour"
Expand Down
2 changes: 1 addition & 1 deletion eng/common/scripts/Package-Properties.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function Get-PrPkgProperties([string]$InputDiffJson) {

foreach ($file in $targetedFiles) {
$filePath = (Join-Path $RepoRoot $file)
$shouldInclude = $filePath -like "$pkgDirectory*"
$shouldInclude = $filePath -like (Join-Path "$pkgDirectory" "*")
if ($shouldInclude) {
$packagesWithChanges += $pkg

Expand Down
Loading

0 comments on commit 7431cf8

Please sign in to comment.