Skip to content
Merged
Show file tree
Hide file tree
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: 1 addition & 6 deletions .github/workflows/pre-merge-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,10 @@ on:
branches:
- main

# Run this workflow on pull requests targeting main but only if files in runtime/rust change.
# Run this workflow on pull requests targeting main but only on rust changes.
pull_request:
paths:
- .github/workflows/pre-merge-rust.yml
- 'lib/runtime/**'
- 'lib/llm/**'
- 'lib/bindings/**'
- 'launch/**'
- 'components/**'
- '**.rs'
- 'Cargo.toml'
- 'Cargo.lock'
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/trigger_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ name: NVIDIA Test Lab Validation
on:
push:
branches:
- main
- "pull-request/[0-9]+"
- main
- "pull-request/[0-9]+"
# Skip docs only changes
paths-ignore:
- '**.md'
- '**.rst'

jobs:
mirror_repo:
Expand Down
Loading