Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 1 addition & 17 deletions .github/workflows/pr-welcome-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,4 @@ jobs:
body: |
👋 Thanks for opening this PR!

### 🚀 Running Full CI Suite

By default, PRs run a subset of CI jobs for faster feedback (latest Ruby/Node versions only).

To run the **complete CI suite** including all dependency combinations and skipped jobs, comment:

```
/run-skipped-ci
```

This will trigger:
- ✅ Minimum supported versions (Ruby 3.2, Node 20)
- ✅ All example app tests
- ✅ Pro package integration tests
- ✅ All test matrices

The full CI suite takes longer but ensures compatibility across all supported versions before merging.
**Need full CI coverage?** Comment `/run-skipped-ci` to test against minimum supported versions (Ruby 3.2, Node 20) and all test matrices.
16 changes: 1 addition & 15 deletions .github/workflows/pr-welcome-message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,7 @@ jobs:
const welcomeMessage = [
'👋 **Thanks for your contribution!**',
'',
'This PR will run CI tests based on the files you changed. If some tests are skipped and you want to run the full test suite (including minimum dependency tests), you can use these commands:',
'',
'### CI Control Commands',
'',
'- **`/run-skipped-ci`** - Runs all skipped CI checks and enables full CI mode for this PR',
' - Adds the `full-ci` label to ensure future commits also run the full test suite',
' - Useful when you want comprehensive testing across all configurations',
'',
'- **`/stop-run-skipped-ci`** - Disables full CI mode and returns to standard CI',
' - Removes the `full-ci` label',
' - Future commits will only run tests for changed files',
'',
'**Note:**',
'- These commands require write access to the repository',
'- The `full-ci` label is preserved on merged PRs as a historical record',
'**Need full CI coverage?** Comment `/run-skipped-ci` to test against minimum supported versions (Ruby 3.2, Node 20) and all test matrices.',
'',
'View CI progress in the [Actions tab](${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions).'
].join('\n');
Expand Down