chore: remove deprecated workflow files from v1.x#1115
Merged
Conversation
- Remove dependabot.yml (deprecated) - Remove test.yml workflow (consolidated into CI) - Remove lint.yml workflow (consolidated into CI) - Remove types.yml workflow (consolidated into CI) These workflows were already removed from main branch and are showing as disabled in GitHub Actions UI. Removing from v1.x branch to clean up the Actions workflow list.
billxinli
approved these changes
Mar 11, 2026
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.
Summary
Changes
.github/dependabot.yml(deprecated).github/workflows/test.yml(consolidated into CI workflow).github/workflows/lint.yml(consolidated into CI workflow).github/workflows/types.yml(consolidated into CI workflow)Why
GitHub Actions UI displays workflows from all branches, not just the default branch. These disabled workflows are appearing in the UI because they still exist in the v1.x branch, even though they were removed from main.
Removing them from v1.x will clean up the Actions UI and remove the "Disabled" workflow entries.
Test Plan
Note
Low Risk
Low risk: this only deletes deprecated GitHub configuration files and does not affect application/runtime code. The main impact is reduced automated checks/dependabot updates on this branch, but these workflows were already disabled/unused.
Overview
Removes deprecated GitHub automation configs from the
v1.xbranch by deleting.github/dependabot.ymland the standalonelint.yml,test.yml, andtypes.ymlworkflow files.This cleans up the GitHub Actions UI (removing disabled workflow entries) and leaves the branch without those legacy scheduled updates/check workflows.
Written by Cursor Bugbot for commit 72da152. This will update automatically on new commits. Configure here.