chore: Updated workflow names and trigger schedule #1672
Merged
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.
Purpose
This pull request includes several updates to the GitHub Actions workflows to improve clarity and functionality. The changes involve renaming workflows for better readability, adjusting cron schedules, and adding a new event trigger.
Workflow renaming for clarity:
.github/workflows/build-docker-images.yml
: Renamed to "Build Docker and Optional Push" for better description of functionality..github/workflows/ci.yml
: Renamed to "Validate Deployment" to better reflect the purpose of the workflow..github/workflows/create-release.yml
: Renamed to "Create-Release" for consistency in naming conventions..github/workflows/pr-title-checker.yml
: Renamed to "PR Title Checker" for improved readability..github/workflows/stale-bot.yml
: Renamed to "Stale Bot" for a clearer understanding of its purpose..github/workflows/tests.yml
: Renamed to "Test Workflow with Coverage" to indicate the inclusion of test coverage.Event trigger and schedule adjustments:
.github/workflows/build-docker-images.yml
: Addedworkflow_dispatch
event trigger to allow manual triggering of the workflow..github/workflows/ci.yml
: Adjusted cron schedule to run at 8:00 AM and 8:00 PM GMT instead of 6:00 AM and 6:00 PM GMT.Does this introduce a breaking change?
How to Test
What to Check
Verify that the following are valid
Other Information