chore(ci): remove stale and failing workflows - #494
Merged
Conversation
Copilot created this pull request from a session on behalf of
ss-o
August 1, 2026 19:37
View session
ss-o
marked this pull request as ready for review
August 1, 2026 19:37
ss-o
approved these changes
Aug 1, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes several GitHub Actions workflows that are described as obsolete, failing, or unused, to simplify CI maintenance while keeping the reusable Zsh CI workflow and remaining metrics workflows.
Changes:
- Removed the legacy
zsh-n.ymlworkflow (push/PR + workflow_call Zsh parsing/zcompile matrix). - Removed legacy GitHub Pages and asset deployment workflows (
gh-push.yml,gh-deploy-assets.yml). - Removed the scheduled
activity_metrics.ymlworkflow.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/zsh-n.yml |
Removed legacy Zsh zsh -n / zcompile workflow (previously ran on push/PR and supported workflow_call). |
.github/workflows/gh-push.yml |
Removed metrics-to-GitHub-Pages deploy workflow triggered via workflow_run. |
.github/workflows/gh-deploy-assets.yml |
Removed profile/** asset publishing workflow to GitHub Pages. |
.github/workflows/activity_metrics.yml |
Removed scheduled activity metrics workflow that used org-scoped credentials. |
Suppressed comments (1)
.github/workflows/zsh-n.yml:1
- Deleting this workflow removes the only Zsh syntax validation that runs on push/PR in this repository. The repo still contains at least one
.zshfile (.github/skills/new-zsh-plugin/templates/plugin.plugin.zsh), and no remaining workflow appears to call the reusablezsh-ci.yml, so Zsh templates can regress without CI catching it.
Consider either keeping a lightweight push/PR Zsh syntax workflow here, or adding a small caller workflow that uses: ./.github/workflows/zsh-ci.yml (optionally with run-zcompile: true) for paths that include .zsh templates.
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.
Removes CI workflows that were obsolete, failing due to invalid credentials, or manually disabled without callers. Retains the reusable Zsh CI workflow and active metrics workflows.
Pages publishing
Metrics
Zsh validation
zsh-ci.ymlremains the reusable implementation.