You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
Copy file name to clipboardExpand all lines: .github/read-me.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,14 @@ This directory contains GitHub Actions workflows for continuous integration and
4
4
5
5
## PR Comment Commands
6
6
7
-
### `/run-skipped-ci` - Run Full CI Suite
7
+
### `/run-skipped-ci`(or `/run-skipped-tests`) - Run Full CI Suite
8
8
9
9
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:
10
10
11
11
```
12
12
/run-skipped-ci
13
+
# or use the shorter alias:
14
+
/run-skipped-tests
13
15
```
14
16
15
17
This command will trigger:
@@ -33,7 +35,7 @@ By default, PRs run a subset of CI jobs to provide fast feedback:
33
35
- Skips example generator tests
34
36
- Skips some Pro package tests
35
37
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.
37
39
38
40
### Security & Access Control
39
41
@@ -43,11 +45,11 @@ This is intentional to keep PR feedback loops fast. However, before merging, you
43
45
- Unauthorized access to Pro package tests
44
46
- Potential DoS attacks via repeated CI runs
45
47
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.
47
49
48
50
### Concurrency Protection
49
51
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.
51
53
52
54
## Testing Comment-Triggered Workflows
53
55
@@ -82,7 +84,7 @@ For more details, see [GitHub's documentation on issue_comment events](https://d
82
84
83
85
### Utility Workflows
84
86
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
86
88
-**`pr-welcome-comment.yml`** - Auto-comments on new PRs with helpful info
87
89
-**`detect-changes.yml`** - Detects which parts of the codebase changed
88
90
@@ -109,6 +111,6 @@ Many workflows use change detection to skip unnecessary jobs:
109
111
110
112
- Runs all jobs on pushes to `master`
111
113
- 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
113
115
114
116
See `script/ci-changes-detector` for the change detection logic.
0 commit comments