chore(ci): disable all GitHub Actions workflows on this fork#8
Merged
Conversation
Rename every workflow file under .github/workflows/ to a `.yml.disabled` suffix so GitHub Actions no longer recognizes them. This stops all automatic runs on the fork — including the scheduled `Release` job (which runs every 3 hours and keeps queuing), CI on push/PR, deploy-relay, issue-labels, mobile EAS preview, and the pr-size / pr-vouch `pull_request_target` jobs. Pure renames with no content changes, so re-enabling is just renaming the files back to `.yml`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
Disables all GitHub Actions workflows on this fork by renaming each file under
.github/workflows/to a.yml.disabledsuffix. GitHub Actions only recognizes.yml/.yamlfiles, so the renamed files are ignored entirely — no triggers fire (push, PR,pull_request_target, schedule, orworkflow_dispatch).This stops the noise/cost of fork runs, most notably the scheduled
Releasejob (cron: 0 */3 * * *) that runs every 3 hours and keeps queuing.Disabled workflows
ci.yml(push/PR)deploy-relay.yml(push to main)issue-labels.ymlmobile-eas-preview.ymlpr-size.yml(pull_request_target)pr-vouch.yml(pull_request_target/issue_comment)release.yml(tag push / schedule / dispatch)Notes
.yml.pull_requestuses the base ref's workflow files); those runs are being cancelled out of band.🤖 Generated with Claude Code