introduces change detection job and a "ready to merge" running on Linux to avoid macOS runner congestion#1270
Merged
TravisEz13 merged 7 commits intomasterfrom Mar 27, 2025
Conversation
TravisEz13
commented
Mar 27, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Summary
This pull request introduces a new change detection job and a "ready to merge" job to several GitHub workflow files. The change detection job identifies if specific files have been modified, and the "ready to merge" job ensures that the changes are ready for merging after successful completion of other jobs.
New Change Detection Job:
changesjob to detect if specific files have been modified, using thedorny/paths-filteraction. This job runs onubuntu-latestand sets outputs based on the detected changes. (.github/workflows/PR-powershell-daily.yml, [1];.github/workflows/PR-powershell-lts.yml, [2];.github/workflows/PR-powershell-preview.yml, [3];.github/workflows/PR-powershell.yml, [4]New Ready to Merge Job:
ready_to_mergejob that depends on the completion of other jobs and uses thePowerShell/compliance/.github/workflows/ready-to-merge.ymlaction. This job runs unconditionally (if: always()) and ensures that the changes are ready for merging. (.github/workflows/PR-powershell-daily.yml, [1];.github/workflows/PR-powershell-lts.yml, Fc269bdfL51R82;.github/workflows/PR-powershell-preview.yml, [2];.github/workflows/PR-powershell.yml, [3]Integration with Existing Jobs:
homebrew-formula-daily,homebrew-formula-lts,homebrew-formula-preview,homebrew-formula-stable) to depend on the newchangesjob and only run if the relevant files have been modified. (.github/workflows/PR-powershell-daily.yml, [1];.github/workflows/PR-powershell-lts.yml, [2];.github/workflows/PR-powershell-preview.yml, [3];.github/workflows/PR-powershell.yml, [4]PR Context