Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Code Simplifier workflow configuration so it no longer runs on a daily schedule and can only be started manually via workflow_dispatch.
Changes:
- Removed the
schedule(cron) trigger from the generated workflow (code-simplifier.lock.yml). - Updated the workflow’s Markdown source (
code-simplifier.md) to reflect manual-only dispatch. - Minor whitespace cleanup at the end of the
jobssection in the lock file.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/code-simplifier.md |
Switches the workflow “on” configuration from schedule: daily to workflow_dispatch in the source manifest. |
.github/workflows/code-simplifier.lock.yml |
Removes the cron schedule trigger from the compiled workflow and trims trailing whitespace. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
This pull request updates the configuration for the Code Simplifier workflow by removing its scheduled daily runs and making it triggerable only via manual dispatch. This change affects both the workflow's YAML and Markdown configuration files.
Workflow Trigger Changes:
.github/workflows/code-simplifier.lock.yml: Removed the scheduled cron job so the workflow will no longer run automatically each day; it can now only be started manually viaworkflow_dispatch..github/workflows/code-simplifier.md: Updated the documentation to reflect the removal of the daily schedule in favor of manual dispatch.Minor Cleanup:
.github/workflows/code-simplifier.lock.yml: Removed an unnecessary trailing line in thejobssection for tidiness.