Skip to content

Commit

Permalink
main
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhao-su committed Oct 27, 2023
2 parents fe57b51 + abf3a78 commit b6ec38e
Show file tree
Hide file tree
Showing 479 changed files with 8,723 additions and 4,714 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ updates:
arrow:
patterns:
- "arrow*"
- "parquet"
aws:
patterns:
- "aws*"
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/auto-create-doc-issue-by-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Issue Documentation Checker

on:
issues:
types:
- closed
- labeled

jobs:
create-issue:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Log the event payload
run: echo "${{ toJSON(github.event) }}"
- name: Check if issue is done and labeled 'user-facing-changes'
uses: dacbd/create-issue-action@main
if: ${{ github.event.action == 'closed' && contains(github.event.issue.labels.*.name, 'user-facing-changes') }}
with:
token: ${{ secrets.ACCESS_TOKEN }}
owner: risingwavelabs
repo: risingwave-docs
title: |
Document: ${{ github.event.issue.title }}
body: |
## Context
Source Issue URL: ${{ github.event.issue.html_url }}
Created At: ${{ github.event.issue.created_at }}
Created By: ${{ github.event.issue.user.login }}
Closed At: ${{ github.event.issue.closed_at }}
File renamed without changes.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,7 @@ simulation-it-test.tar.zst
# hummock-trace
.trace

# spark binary
e2e_test/iceberg/spark-*-bin*

**/poetry.lock
2 changes: 1 addition & 1 deletion .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ header:
- "**/*.d.ts"
- "src/sqlparser/**/*.rs"
- "java/connector-node/risingwave-source-cdc/src/main/java/com/risingwave/connector/cdc/debezium/internal/*.java"
- "src/meta/src/model_v2/migration/**/*.rs"
- "src/meta/model_v2/migration/**/*.rs"

comment: on-failure
Loading

0 comments on commit b6ec38e

Please sign in to comment.