Skip to content

Commit

Permalink
chore: wip in release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ludndev committed Jul 18, 2024
1 parent 605fa05 commit dec3d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
$CHECK_RUNS = gh api repos/$env:GITHUB_REPOSITORY/commits/$COMMIT_SHA/check-runs --jq '.check_runs[] | {name, conclusion}'
# Filter only the runs relevant to check-version and check-last-commit
$SELECTED_CHECK_RUNS = $CHECK_RUNS | ConvertFrom-Json | Where-Object { $_.name -eq 'check-version' -or $_.name -eq 'check-last-commit' }
$SELECTED_CHECK_RUNS = $CHECK_RUNS | Where-Object { $_.name -eq 'check-version' -or $_.name -eq 'check-last-commit' }
$CHECK_RUNS = $SELECTED_CHECK_RUNS
$FAILED_CHECKS = $CHECK_RUNS | ConvertFrom-Json | Where-Object { $_.conclusion -ne 'success' }
Expand Down

0 comments on commit dec3d58

Please sign in to comment.