Skip to content

Commit

Permalink
only on pr-target
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklan committed Oct 9, 2024
1 parent 1176130 commit 60863fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/semver-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ name: semver-checks

# Trigger when a PR is opened or changed
on:
# pull_request_target:
# types:
# - opened
# - edited
# - synchronize
# - reopened
pull_request
pull_request_target:
types:
- opened
- edited
- synchronize
- reopened

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion kernel/src/engine/default/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl<E: TaskExecutor> DefaultParquetHandler<E> {
/// Max number of batches to read ahead while executing [Self::read_parquet_files()].
///
/// Defaults to 10.
pub fn with_readahead_x(mut self, readahead: usize) -> Self {
pub fn with_readahead(mut self, readahead: usize) -> Self {
self.readahead = readahead;
self
}
Expand Down

0 comments on commit 60863fe

Please sign in to comment.