Skip to content

Commit 94936ab

Browse files
justin808claude
andcommitted
Simplify PR welcome messages to be more concise
Reduced both PR welcome message workflows to single-line summaries: - Removed verbose bullet-point lists and detailed explanations - Kept only essential information: how to trigger full CI - Eliminated redundant information between the two workflows 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent d94259f commit 94936ab

File tree

2 files changed

+2
-32
lines changed

2 files changed

+2
-32
lines changed

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

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,4 @@ jobs:
1919
body: |
2020
👋 Thanks for opening this PR!
2121
22-
### 🚀 Running Full CI Suite
23-
24-
By default, PRs run a subset of CI jobs for faster feedback (latest Ruby/Node versions only).
25-
26-
To run the **complete CI suite** including all dependency combinations and skipped jobs, comment:
27-
28-
```
29-
/run-skipped-ci
30-
```
31-
32-
This will trigger:
33-
- ✅ Minimum supported versions (Ruby 3.2, Node 20)
34-
- ✅ All example app tests
35-
- ✅ Pro package integration tests
36-
- ✅ All test matrices
37-
38-
The full CI suite takes longer but ensures compatibility across all supported versions before merging.
22+
**Need full CI coverage?** Comment `/run-skipped-ci` to test against minimum supported versions (Ruby 3.2, Node 20) and all test matrices.

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

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,7 @@ jobs:
1818
const welcomeMessage = [
1919
'👋 **Thanks for your contribution!**',
2020
'',
21-
'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:',
22-
'',
23-
'### CI Control Commands',
24-
'',
25-
'- **`/run-skipped-ci`** - Runs all skipped CI checks and enables full CI mode for this PR',
26-
' - Adds the `full-ci` label to ensure future commits also run the full test suite',
27-
' - Useful when you want comprehensive testing across all configurations',
28-
'',
29-
'- **`/stop-run-skipped-ci`** - Disables full CI mode and returns to standard CI',
30-
' - Removes the `full-ci` label',
31-
' - Future commits will only run tests for changed files',
32-
'',
33-
'**Note:**',
34-
'- These commands require write access to the repository',
35-
'- The `full-ci` label is preserved on merged PRs as a historical record',
21+
'**Need full CI coverage?** Comment `/run-skipped-ci` to test against minimum supported versions (Ruby 3.2, Node 20) and all test matrices.',
3622
'',
3723
'View CI progress in the [Actions tab](${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions).'
3824
].join('\n');

0 commit comments

Comments
 (0)