diff --git a/.github/workflows/apidoc.yml b/.github/workflows/apidoc.yml index 44cd6e7579fa..f3511feae22e 100644 --- a/.github/workflows/apidoc.yml +++ b/.github/workflows/apidoc.yml @@ -1,7 +1,7 @@ on: push: branches: - - develop + - main paths-ignore: - 'docs/**' - 'config/**' diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index d95c495db14b..f345f0607077 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -11,7 +11,6 @@ on: - '.gitignore' push: branches: - - develop - main paths-ignore: - 'docs/**' diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5cd39adbe64e..4010a691cad0 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,7 +11,6 @@ on: - '.gitignore' push: branches: - - develop - main paths: - 'docs/**' diff --git a/.github/workflows/license.yaml b/.github/workflows/license.yaml index df08a5cc8d2d..286cd15a1505 100644 --- a/.github/workflows/license.yaml +++ b/.github/workflows/license.yaml @@ -3,7 +3,7 @@ name: License checker on: push: branches: - - develop + - main pull_request: types: [opened, synchronize, reopened, ready_for_review] jobs: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 32c0a39bd245..dcbef7b53082 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ Follow our [README](https://github.com/GreptimeTeam/greptimedb#readme) to get th It can feel intimidating to contribute to a complex project, but it can also be exciting and fun. These general notes will help everyone participate in this communal activity. -- Follow the [Code of Conduct](https://github.com/GreptimeTeam/greptimedb/blob/develop/CODE_OF_CONDUCT.md) +- Follow the [Code of Conduct](https://github.com/GreptimeTeam/greptimedb/blob/main/CODE_OF_CONDUCT.md) - Small changes make huge differences. We will happily accept a PR making a single character change if it helps move forward. Don't wait to have everything working. - Check the closed issues before opening your issue. - Try to follow the existing style of the code. @@ -26,7 +26,7 @@ Pull requests are great, but we accept all kinds of other help if you like. Such ## Code of Conduct -Also, there are things that we are not looking for because they don't match the goals of the product or benefit the community. Please read [Code of Conduct](https://github.com/GreptimeTeam/greptimedb/blob/develop/CODE_OF_CONDUCT.md); we hope everyone can keep good manners and become an honored member. +Also, there are things that we are not looking for because they don't match the goals of the product or benefit the community. Please read [Code of Conduct](https://github.com/GreptimeTeam/greptimedb/blob/main/CODE_OF_CONDUCT.md); we hope everyone can keep good manners and become an honored member. ## License diff --git a/README.md b/README.md index a9156560eb2a..4dc8ac7c3d90 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@

- - - GreptimeDB Logo + + + GreptimeDB Logo

@@ -12,11 +12,11 @@

- +   - CI + CI   - +

@@ -168,7 +168,7 @@ In addition, you may: GreptimeDB uses the [Apache 2.0 license][1] to strike a balance between open contributions and allowing you to use the software however you want. -[1]: +[1]: ## Contributing diff --git a/src/client/src/stream_insert.rs b/src/client/src/stream_insert.rs index e2bfb28760fa..a75144786012 100644 --- a/src/client/src/stream_insert.rs +++ b/src/client/src/stream_insert.rs @@ -39,7 +39,7 @@ use crate::from_grpc_response; /// ``` /// /// If you want to see a concrete usage example, please see -/// [stream_inserter.rs](https://github.com/GreptimeTeam/greptimedb/blob/develop/src/client/examples/stream_ingest.rs). +/// [stream_inserter.rs](https://github.com/GreptimeTeam/greptimedb/blob/main/src/client/examples/stream_ingest.rs). pub struct StreamInserter { sender: mpsc::Sender, diff --git a/src/index/src/inverted_index/format.rs b/src/index/src/inverted_index/format.rs index 104092c729b9..85ce1b9534af 100644 --- a/src/index/src/inverted_index/format.rs +++ b/src/index/src/inverted_index/format.rs @@ -48,7 +48,7 @@ //! More detailed information regarding the encoding of the inverted indices can be found in the [RFC]. //! //! [`InvertedIndexMetas`]: https://github.com/GreptimeTeam/greptime-proto/blob/2aaee38de81047537dfa42af9df63bcfb866e06c/proto/greptime/v1/index/inverted_index.proto#L32-L64 -//! [RFC]: https://github.com/GreptimeTeam/greptimedb/blob/develop/docs/rfcs/2023-11-03-inverted-index.md +//! [RFC]: https://github.com/GreptimeTeam/greptimedb/blob/main/docs/rfcs/2023-11-03-inverted-index.md pub mod reader; pub mod writer;