Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cdozdil authored Jan 21, 2025
1 parent 3eda095 commit 038461d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,12 @@ jobs:
$gitVersion = git --version
Write-Output "Git Version: $gitVersion`n"
git log --since="1 day ago" --pretty=format:"%h %s (%an)" --abbrev-commit
git log --since="1 day ago" --pretty=format:"%h %s (%an)" --abbrev-commit --grep=".yml" --invert-grep
# Get commit messages excluding .yml file commits
$commits = git log --since="1 day ago" --pretty=format:"%h %s (%an)" --abbrev-commit --grep=".yml" --invert-grep
$commits = git log --since="1 day ago" --pretty=format:"%h %s (%an)" --abbrev-commit
Write-Output "$commits"
$commits = $commits -split "`n"
Expand Down

0 comments on commit 038461d

Please sign in to comment.