Add sites status command to display sync/build status for sites - #32
Open
CodyWilson wants to merge 1 commit into
Open
Add sites status command to display sync/build status for sites#32CodyWilson wants to merge 1 commit into
sites status command to display sync/build status for sites#32CodyWilson wants to merge 1 commit into
Conversation
- Introduced `sitesStatusCommand` in `sites.ts`. - Updated README.md with usage instructions and flags for the new command.
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.
I had a need to be able to see what sites are currently building on the current day. That way I can inform our morning QA team when the sites are finished building that way they know they can go and start their post deployment verification.
This command lets you see at a glance which sites have no new build today, are currently syncing/building, and which sites have finished building/failed.
It also allows you to filter both by the branch the sites could be syncing from (In my case the
productionbranch is always used for our production websites, so this makes it a simple filter to use). But there is also a--matchthat will take regex and match based off that.I tried to follow how other commands are made.
Let me know if anything needs to change, more than willing to adjust as needed.