Skip to content

Commit

Permalink
Merge branch 'main' into xxh/support_iceberg_mor
Browse files Browse the repository at this point in the history
  • Loading branch information
xxhZs committed Nov 22, 2024
2 parents 9e48e45 + e544337 commit 78d43ed
Show file tree
Hide file tree
Showing 224 changed files with 8,602 additions and 2,977 deletions.
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,29 @@ updates:
google-cloud:
patterns:
- "google-cloud*"

# Don't update these directories
- package-ecosystem: cargo
directory: /integration_tests/feature-store
schedule:
interval: "daily"
ignore:
- dependency-name: "*"

- package-ecosystem: maven
directory: /java
schedule:
interval: "weekly"
open-pull-requests-limit: 5
# Disable auto rebase to reduce cost. Use `@dependabot rebase` manually instead.
rebase-strategy: "disabled"
ignore:
# Do not bump Debezium because we have hacked its source code e.g. #18760
- dependency-name: "io.debezium:*"
update-types:
["version-update:semver-minor", "version-update:semver-major"]
groups:
# Group all dependenies together because Java libraries are quite stable
all:
patterns:
- "*"
22 changes: 22 additions & 0 deletions .github/label-commenter-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
comment:
header: Hi, there.
footer: "\
---\n\n\
> This is an automated comment created by the [peaceiris/actions-label-commenter]. \
Responding to the bot or mentioning it won't have any effect.\n\n\
[peaceiris/actions-label-commenter]: https://github.com/peaceiris/actions-label-commenter"

labels:
- name: 'user-facing-changes'
labeled:
pr:
body: |
:memo: **Telemetry Reminder**:
If you're implementing this feature, please consider adding telemetry metrics to track its usage. This helps us understand how the feature is being used and improve it further.
You can find the function `report_event` of telemetry reporting in the following files. Feel free to ask questions if you need any guidance!
* `src/frontend/src/telemetry.rs`
* `src/meta/src/telemetry.rs`
* `src/stream/src/telemetry.rs`
* `src/storage/compactor/src/telemetry.rs`
Or calling `report_event_common` (`src/common/telemetry_event/src/lib.rs`) as if finding it hard to implement.
:sparkles: Thank you for your contribution to RisingWave! :sparkles:
23 changes: 23 additions & 0 deletions .github/workflows/label-triggered.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Label Triggered Comment

on:
issues:
types: [labeled, unlabeled]
pull_request:
types: [labeled, unlabeled]

permissions:
contents: read
issues: write
pull-requests: write

jobs:
comment:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Label Commenter
uses: peaceiris/actions-label-commenter@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
config_file: .github/label-commenter-config.yml
Loading

0 comments on commit 78d43ed

Please sign in to comment.