Skip to content

Commit 7045ddd

Browse files
authored
chore: trim incubator prefix everywhere (#4016)
Signed-off-by: tison <wander4096@gmail.com>
1 parent 33174bd commit 7045ddd

File tree

151 files changed

+1431
-1435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+1431
-1435
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111

1212
# This is a place holder for all committers who what to join the review of not owned code.
1313
#
14-
# More details could be found at <https://github.com/apache/incubator-opendal/issues/3967>
14+
# More details could be found at <https://github.com/apache/opendal/issues/3967>
1515
COMMITTERS_PLACEHOLDER @Xuanwo @Ji-Xinyou @morristai @dqhl76 @ClSlaid @Young-Flash @G-XD @oowl @silver-ymz

.github/actions/setup/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
4040
run: |
4141
# Disable full debug symbol generation to speed up CI build and keep memory down
4242
# "1" means line tables only, which is useful for panic tracebacks.
43-
# About `force-frame-pointers`, here's the discussion history: https://github.com/apache/incubator-opendal/issues/3756
43+
# About `force-frame-pointers`, here's the discussion history: https://github.com/apache/opendal/issues/3756
4444
echo "RUSTFLAGS=-C force-frame-pointers=yes -C debuginfo=1" >> $GITHUB_ENV
4545
# Enable backtraces
4646
echo "RUST_BACKTRACE=1" >> $GITHUB_ENV

.github/workflows/behavior_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
5353
# Handle event-specific logic
5454
if [ "$event_name" == "push" ]; then
55-
if [ "$repository" == "apache/incubator-opendal" ]; then
55+
if [ "$repository" == "apache/opendal" ]; then
5656
is_push="true"
5757
has_secrets="true"
5858
fi

.github/workflows/bindings_php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
name: Bindings PHP CI
1919

2020
on:
21-
# Disable PHP build until https://github.com/apache/incubator-opendal/issues/3055 addressed
21+
# Disable PHP build until https://github.com/apache/opendal/issues/3055 addressed
2222
#
2323
# push:
2424
# branches:

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152

153153
- name: Cargo clippy
154154
# FIXME
155-
# remove `-exclude opendal-php` after https://github.com/apache/incubator-opendal/issues/3055 addressed
155+
# remove `-exclude opendal-php` after https://github.com/apache/opendal/issues/3055 addressed
156156
run: cargo clippy --all-targets --all-features --workspace --exclude opendal-php -- -D warnings
157157

158158
- name: Check diff
@@ -280,7 +280,7 @@ jobs:
280280
# services-rocksdb
281281
services-s3
282282
services-seafile
283-
# TODO: sftp is known to not work on windows, waiting for https://github.com/apache/incubator-opendal/issues/2963
283+
# TODO: sftp is known to not work on windows, waiting for https://github.com/apache/opendal/issues/2963
284284
# services-sftp
285285
services-sled
286286
services-swift

.github/workflows/release_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
steps:
113113
- uses: actions/checkout@v4
114114
with:
115-
repository: apache/incubator-opendal
115+
repository: apache/opendal
116116
ref: ${{ inputs.ref }}
117117
- name: Set up JDK 8
118118
uses: actions/setup-java@v4

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ dist/
88
# env files for backends
99
.env
1010

11-
incubator-opendal-release-verify
12-
1311
# profiling
1412
flamegraph.svg
1513
perf.*

CHANGELOG.md

Lines changed: 1011 additions & 1011 deletions
Large diffs are not rendered by default.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors:
99
email: dev@opendal.apache.org
1010
identifiers:
1111
- type: url
12-
value: 'https://github.com/apache/incubator-opendal'
13-
repository-code: 'https://github.com/apache/incubator-opendal'
12+
value: 'https://github.com/apache/opendal'
13+
repository-code: 'https://github.com/apache/opendal'
1414
url: 'https://opendal.apache.org/'
1515
license: Apache-2.0

CONTRIBUTING.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,24 @@
22

33
First, thank you for contributing to OpenDAL! The goal of this document is to provide everything you need to start contributing to OpenDAL. The following TOC is sorted progressively, starting with the basics and expanding into more specifics.
44

5-
- [Your First Contribution](#your-first-contribution)
6-
- [Workflow](#workflow)
7-
- [Git Branches](#git-branches)
8-
- [GitHub Pull Requests](#github-pull-requests)
9-
- [Title](#title)
10-
- [Reviews & Approvals](#reviews--approvals)
11-
- [Merge Style](#merge-style)
5+
- [Contributing](#contributing)
6+
- [Your First Contribution](#your-first-contribution)
7+
- [Workflow](#workflow)
8+
- [Git Branches](#git-branches)
9+
- [GitHub Pull Requests](#github-pull-requests)
10+
- [Title](#title)
11+
- [Reviews \& Approvals](#reviews--approvals)
12+
- [Merge Style](#merge-style)
1213
- [CI](#ci)
13-
- [Setup](#setup)
14-
- [Using a dev container environment](#using-a-dev-container-environment)
15-
- [Bring your own toolbox](#bring-your-own-toolbox)
16-
- [Code of Conduct](#code-of-conduct)
14+
- [Setup](#setup)
15+
- [Using a dev container environment](#using-a-dev-container-environment)
16+
- [Bring your own toolbox](#bring-your-own-toolbox)
17+
- [Code of Conduct](#code-of-conduct)
1718

1819
## Your First Contribution
1920

20-
1. Ensure your change has an issue! Find an [existing issue](https://github.com/apache/incubator-opendal/issues) or [open a new issue](https://github.com/apache/incubator-opendal/issues/new).
21-
1. [Fork the OpenDAL repository](https://github.com/apache/incubator-opendal/fork) in your own GitHub account.
21+
1. Ensure your change has an issue! Find an [existing issue](https://github.com/apache/opendal/issues) or [open a new issue](https://github.com/apache/opendal/issues/new).
22+
1. [Fork the OpenDAL repository](https://github.com/apache/opendal/fork) in your own GitHub account.
2223
1. [Create a new Git branch](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository).
2324
1. Make your changes.
2425
1. [Submit the branch as a pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork) to the main OpenDAL repo. An OpenDAL team member should comment and/or review your pull request within a few days. Although, depending on the circumstances, it may take longer.
@@ -31,7 +32,7 @@ First, thank you for contributing to OpenDAL! The goal of this document is to pr
3132

3233
### GitHub Pull Requests
3334

34-
Once your changes are ready you must submit your branch as a [pull request](https://github.com/apache/incubator-opendal/pulls).
35+
Once your changes are ready you must submit your branch as a [pull request](https://github.com/apache/opendal/pulls).
3536

3637
#### Title
3738

@@ -56,7 +57,7 @@ All pull requests should be reviewed by at least one OpenDAL committer.
5657
All pull requests are squash merged.
5758
We generally discourage large pull requests that are over 300–500 lines of diff.
5859
If you would like to propose a change that is larger, we suggest
59-
coming onto our [Discussions](https://github.com/apache/incubator-opendal/discussions) and discussing it with us.
60+
coming onto our [Discussions](https://github.com/apache/opendal/discussions) and discussing it with us.
6061
This way we can talk through the solution and discuss if a change that large is even needed!
6162
This will produce a quicker response to the change and likely produce code that aligns better with our process.
6263

@@ -78,7 +79,7 @@ Please pick up your favourite runtime environment.
7879

7980
The fastest way is:
8081

81-
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/incubator-opendal?quickstart=1&machine=standardLinux32gb)
82+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/opendal?quickstart=1&machine=standardLinux32gb)
8283

8384
### Bring your own toolbox
8485

0 commit comments

Comments
 (0)