Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/risingwavelabs/risingwave i…
Browse files Browse the repository at this point in the history
…nto li0k/frontend_compaction_status
  • Loading branch information
Li0k committed Oct 25, 2023
2 parents 1495925 + 39f71a1 commit 59874e8
Show file tree
Hide file tree
Showing 204 changed files with 4,302 additions and 2,896 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
Loading

0 comments on commit 59874e8

Please sign in to comment.