-
Notifications
You must be signed in to change notification settings - Fork 34
Add weekly build workflow to ensure regular builds even during quiet periods #226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: eleanorjboyd <[email protected]>
|
@copilot please update to add the new weekly run to the existing azure yml instead of making a new one |
Co-authored-by: eleanorjboyd <[email protected]>
I've updated the implementation as requested. Removed the GitHub Actions weekly workflow and added the weekly schedule to the existing Azure pipeline ( |
This PR adds a new GitHub Actions workflow that runs builds automatically once per week, ensuring that builds are executed regularly even when there are no recent changes to the main branch.
Changes Made
.github/workflows/weekly-build.yml'0 0 * * 0'workflow_dispatchfor testing purposesbuild.ymlworkflow-weeklyto distinguish them from push-triggered buildsRationale
The existing
build.ymlworkflow only runs when code is pushed to main or release branches. During periods of low activity, this could mean builds don't run for extended periods, potentially missing issues with dependencies, toolchain updates, or other environmental changes.This weekly build ensures:
Testing
The workflow can be manually triggered via the GitHub Actions UI for immediate testing. The scheduled execution will begin automatically according to the cron schedule.
Fixes #225.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.