Skip to content

Commit 8ef43bc

Browse files
justin808claude
andcommitted
Rename command from /run-full-ci to /run-skipped-ci
Changes the PR comment command to match the workflow filename for consistency. **Changes:** - Update workflow trigger to listen for `/run-skipped-ci` - Update welcome comment to show `/run-skipped-ci` - Update README documentation to reference `/run-skipped-ci` - Update workflow filename reference in docs The command name now clearly indicates it runs the normally-skipped CI jobs (minimum versions, examples, Pro tests). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 67ea4b4 commit 8ef43bc

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/README.md

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

55
## PR Comment Commands
66

7-
### `/run-full-ci` - Run Full CI Suite
7+
### `/run-skipped-ci` - 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
```
12-
/run-full-ci
12+
/run-skipped-ci
1313
```
1414

1515
This command will trigger:
@@ -33,7 +33,7 @@ By default, PRs run a subset of CI jobs to provide fast feedback:
3333
- Skips example generator tests
3434
- Skips some Pro package tests
3535

36-
This is intentional to keep PR feedback loops fast. However, before merging, you should verify compatibility across all supported versions. The `/run-full-ci` command makes this easy without waiting for the PR to be merged to master.
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.
3737

3838
### Security & Access Control
3939

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

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

4848
### Concurrency Protection
4949

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

5252
## Testing Comment-Triggered Workflows
5353

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

8383
### Utility Workflows
8484

85-
- **`run-full-ci.yml`** - Triggered by `/run-full-ci` comment on PRs
85+
- **`run-skipped-ci.yml`** - Triggered by `/run-skipped-ci` comment on PRs
8686
- **`pr-welcome-comment.yml`** - Auto-comments on new PRs with helpful info
8787
- **`detect-changes.yml`** - Detects which parts of the codebase changed
8888

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

110110
- Runs all jobs on pushes to `master`
111111
- Runs only relevant jobs on PRs based on changed files
112-
- Can be overridden with `workflow_dispatch` or `/run-full-ci` command
112+
- Can be overridden with `workflow_dispatch` or `/run-skipped-ci` command
113113

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

.github/workflows/pr-welcome-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
To run the **complete CI suite** including all dependency combinations and skipped jobs, comment:
2727
2828
```
29-
/run-full-ci
29+
/run-skipped-ci
3030
```
3131
3232
This will trigger:

.github/workflows/run-skipped-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
if: |
1616
github.event.issue.pull_request &&
1717
(
18-
startsWith(github.event.comment.body, '/run-full-ci') ||
19-
contains(github.event.comment.body, '\n/run-full-ci')
18+
startsWith(github.event.comment.body, '/run-skipped-ci') ||
19+
contains(github.event.comment.body, '\n/run-skipped-ci')
2020
)
2121
runs-on: ubuntu-22.04
2222
permissions:

0 commit comments

Comments
 (0)