Update test.yml

This commit is contained in:
cdozdil
2025-01-21 12:42:33 +03:00
committed by GitHub
parent eaebe89f21
commit ffe0bf2d3c
+1 -1
View File
@@ -136,7 +136,7 @@ jobs:
Write-Output "Fetching commits from the last 24 hours..."
# Get commit messages from the past 24 hours
$commits = git log --since="1 day ago" --pretty=format:"%h %s (%an)" --name-only | Where-Object {
$commits = git log --since="1 day ago" --pretty=format:"%h %s (%an)" --abbrev-commit | Where-Object {
-not ($_ -match "\.yml$")
}