Skip to content

Commit fc86eab

Browse files
justin808claude
andcommitted
Update documentation for /run-skipped-tests alias
Updated all references to /run-skipped-ci in documentation to mention the new /run-skipped-tests alias: - CONTRIBUTING.md: Updated command header and example - .github/read-me.md: Updated 6 references throughout the file - Command header - When to use section - Security section - Concurrency section - Utility workflows list - Conditional execution section This ensures users can discover and use either command interchangeably. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 4f1d8a8 commit fc86eab

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/read-me.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ This directory contains GitHub Actions workflows for continuous integration and
44

55
## PR Comment Commands
66

7-
### `/run-skipped-ci` - Run Full CI Suite
7+
### `/run-skipped-ci` (or `/run-skipped-tests`) - Run Full CI Suite
88

99
When you open a PR, CI automatically runs a subset of tests for faster feedback (latest Ruby/Node versions only). To run the **complete CI suite** including all dependency combinations, add a comment to your PR:
1010

1111
```
1212
/run-skipped-ci
13+
# or use the shorter alias:
14+
/run-skipped-tests
1315
```
1416

1517
This command will trigger:
@@ -33,7 +35,7 @@ By default, PRs run a subset of CI jobs to provide fast feedback:
3335
- Skips example generator tests
3436
- Skips some Pro package tests
3537

36-
This is intentional to keep PR feedback loops fast. However, before merging, you should verify compatibility across all supported versions. The `/run-skipped-ci` command makes this easy without waiting for the PR to be merged to master.
38+
This is intentional to keep PR feedback loops fast. However, before merging, you should verify compatibility across all supported versions. The `/run-skipped-ci` (or `/run-skipped-tests`) command makes this easy without waiting for the PR to be merged to master.
3739

3840
### Security & Access Control
3941

@@ -43,11 +45,11 @@ This is intentional to keep PR feedback loops fast. However, before merging, you
4345
- Unauthorized access to Pro package tests
4446
- Potential DoS attacks via repeated CI runs
4547

46-
If an unauthorized user attempts to use `/run-skipped-ci`, they'll receive a message explaining the restriction.
48+
If an unauthorized user attempts to use `/run-skipped-ci` or `/run-skipped-tests`, they'll receive a message explaining the restriction.
4749

4850
### Concurrency Protection
4951

50-
Multiple `/run-skipped-ci` comments on the same PR will cancel in-progress runs to prevent resource waste and duplicate results.
52+
Multiple `/run-skipped-ci` or `/run-skipped-tests` comments on the same PR will cancel in-progress runs to prevent resource waste and duplicate results.
5153

5254
## Testing Comment-Triggered Workflows
5355

@@ -82,7 +84,7 @@ For more details, see [GitHub's documentation on issue_comment events](https://d
8284

8385
### Utility Workflows
8486

85-
- **`run-skipped-ci.yml`** - Triggered by `/run-skipped-ci` comment on PRs
87+
- **`run-skipped-ci.yml`** - Triggered by `/run-skipped-ci` or `/run-skipped-tests` comment on PRs
8688
- **`pr-welcome-comment.yml`** - Auto-comments on new PRs with helpful info
8789
- **`detect-changes.yml`** - Detects which parts of the codebase changed
8890

@@ -109,6 +111,6 @@ Many workflows use change detection to skip unnecessary jobs:
109111

110112
- Runs all jobs on pushes to `master`
111113
- Runs only relevant jobs on PRs based on changed files
112-
- Can be overridden with `workflow_dispatch` or `/run-skipped-ci` command
114+
- Can be overridden with `workflow_dispatch` or `/run-skipped-ci` (or `/run-skipped-tests`) command
113115

114116
See `script/ci-changes-detector` for the change detection logic.

CONTRIBUTING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,12 +426,14 @@ For more details, see [`docs/CI_OPTIMIZATION.md`](./docs/CI_OPTIMIZATION.md).
426426

427427
React on Rails provides PR comment commands to control CI behavior:
428428

429-
#### `/run-skipped-ci` - Enable Full CI Mode
429+
#### `/run-skipped-ci` (or `/run-skipped-tests`) - Enable Full CI Mode
430430

431431
Runs all skipped CI checks and enables full CI mode for the PR:
432432

433433
```
434434
/run-skipped-ci
435+
# or use the shorter alias:
436+
/run-skipped-tests
435437
```
436438

437439
**What it does:**

0 commit comments

Comments
 (0)