Skip to content

Commit

Permalink
only certain types of pr changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklan committed Oct 9, 2024
1 parent e6242a1 commit 6b2ce4b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/semver-checks.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: semver-checks

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

env:
CARGO_TERM_COLOR: always
Expand All @@ -10,6 +17,7 @@ jobs:
check_if_pr_breaks_semver:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
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 6b2ce4b

Please sign in to comment.