Skip to content
Merged
Changes from all commits
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
7 changes: 6 additions & 1 deletion .github/workflows/gpu_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ name: SkyRL-GPU
on:
push:
branches:
- main
- main
paths:
Copy link

Copilot AI Jul 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The paths filter is only applied to the push trigger but not to the workflow_dispatch trigger. Consider if this is intentional - workflow_dispatch allows manual runs regardless of changed files, which may be desired behavior for testing purposes.

Copilot uses AI. Check for mistakes.
- 'skyrl-train/**'
- '!skyrl-train/docs/**'
- '!skyrl-train/examples/**'
- '.github/workflows/**'
workflow_dispatch:


Expand Down