We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9be999e commit 4244e4dCopy full SHA for 4244e4d
1 file changed
.github/workflows/actions/quarto-dev/action.yml
@@ -49,9 +49,9 @@ runs:
49
# Convert the list to an array
50
$modifiedFilesArray = $modifiedFiles -split "`n" | ForEach-Object { $_.Trim() }
51
52
- If ($modifiedFilesArray -contains "tests/Pipfile.lock") {
53
- Write-Output "::warning::test/Pipfile.lock has been modified."
54
- $modifiedFilesArray = $modifiedFilesArray | Where-Object { $_ -notmatch "Pipfile.lock" }
+ If ($modifiedFilesArray -contains "tests/uv.lock") {
+ Write-Output "::warning::test/uv.lock has been modified."
+ $modifiedFilesArray = $modifiedFilesArray | Where-Object { $_ -notmatch "uv.lock" }
55
}
56
57
# Count the number of modified files
0 commit comments