Skip to content

Commit

Permalink
Merge branch 'main' into xx/thread-local-sequence
Browse files Browse the repository at this point in the history
Signed-off-by: MrCroxx <[email protected]>
  • Loading branch information
MrCroxx committed Apr 16, 2024
2 parents dce4999 + 6277157 commit 4a8785b
Show file tree
Hide file tree
Showing 438 changed files with 8,364 additions and 3,202 deletions.
13 changes: 8 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ updates:
open-pull-requests-limit: 10
# Disable auto rebase to reduce cost. Use `@dependabot rebase` manually instead.
rebase-strategy: "disabled"
# Ignore patch to reduce spam. Manually run `cargo update` regularly instead.
ignore:
# Ignore patch to reduce spam. Manually run `cargo update` regularly instead.
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
# Ignore arrow crates. It does major releases frequently: https://github.com/apache/arrow-rs/issues/5368
# We depend on arrow directly, and also many other crates depending on arrow, including icelake, deltalake, arrow-udf, ...
# It will always need human intervention, and we'd better be the last one to update arrow.
- dependency-name: "arrow*"
update-types: ["version-update:semver-minor", "version-update:semver-major"]
- dependency-name: "parquet"
update-types: ["version-update:semver-minor", "version-update:semver-major"]
# Create a group of dependencies to be updated together in one pull request
groups:
arrow:
patterns:
- "arrow*"
- "parquet"
aws:
patterns:
- "aws*"
Expand Down
8 changes: 8 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
version: 1

# Match title
labels:
- label: "type/feature"
title: "^feat.*"
Expand Down Expand Up @@ -29,5 +31,11 @@ labels:
- label: "cherry-pick"
title: "^cherry pick.*"

# Match body
- label: "breaking-change"
body: '- \[x\] My PR contains breaking changes'

# Match File changes
- label: "ci/run-e2e-single-node-tests"
files:
- "src\\/meta\\/.*.rs"
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Label PRs

on:
pull_request:
types: [opened, edited]
types: [opened, edited, synchronize]

jobs:
pr-labeler:
Expand Down
Loading

0 comments on commit 4a8785b

Please sign in to comment.