You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: fix stale repo, branch, and architecture references (#6113)
### What changes were proposed in this PR?
Cleans up leftovers from before the ASF migration, plus two small
adjacent doc fixes:
- `github.com/Texera/texera` → `github.com/apache/texera` in
`CONTRIBUTING.md` (fork + Actions links),
`docs/contribution-guidelines/_index.md`, `docs/examples/_index.md`, and
the clone URL in `guide-for-developers.md`.
- `CONTRIBUTING.md`: PRs are squash-merged into `main`, not `master`
(two mentions).
- `docs/examples/_index.md`: dropped the dead link to an `examples/`
directory that has never existed in this repo.
- `SECURITY.md`: "Kubernates PODs" → "Kubernetes pods".
### Any related issues, documentation, discussions?
Closes#6107
### How was this PR tested?
Docs-only change. Verified `main` is the default branch and
`apache/texera` the canonical repo (`git remote -v`,
`.github/workflows/required-checks.yml`), and that `grep -rn
"github.com/Texera/texera"` finds no remaining hits outside files
handled by #6111.
### Was this PR authored or co-authored using generative AI tooling?
Generated-by: Claude Code (Claude Fable 5)
---------
(backported from commit f787472)
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Thank you for your interest in contributing to Texera! Please follow the steps b
15
15
## 🛠 Contribution Steps
16
16
17
17
### 1. Fork the Repo
18
-
- Fork the [Texera repository](https://github.com/Texera/texera) to your own GitHub account.
18
+
- Fork the [Texera repository](https://github.com/apache/texera) to your own GitHub account.
19
19
20
20
### 2. Find an Existing Issue or Open an Issue
21
21
- Find an existing issue that you want to work on, or create one issue for new proposal/bug description.
@@ -29,7 +29,7 @@ Thank you for your interest in contributing to Texera! Please follow the steps b
29
29
30
30
#### PR Title and Commit Messages
31
31
- We require all PR titles and commit messages to follow the [Conventional Commits spec](https://www.conventionalcommits.org/en/v1.0.0/).
32
-
- All PR titles will be used as the **squashed commit message** when merged into the `master` branch.
32
+
- All PR titles will be used as the **squashed commit message** when merged into the `main` branch.
33
33
- Example PR titles:
34
34
-`feat: add a new join operator`
35
35
-`fix(ui): prevent racing of requests`
@@ -67,7 +67,7 @@ Do not include any of the following in your PR:
67
67
* For the amber engine's tests, the working directory should be `amber`
68
68
* For the other services' tests, the working directory should be the root directory
69
69
#### Testing the frontend
70
-
Before merging your code to the master branch, you need to pass the existing unit tests first.
70
+
Before merging your code to the main branch, you need to pass the existing unit tests first.
71
71
1. Open a command line. Navigate to the `frontend` directory.
72
72
2. Start the test:
73
73
```
@@ -85,7 +85,7 @@ yarn format:fix
85
85
-[ ] Ask a Texera Committer (by commenting on the PR) to triage your PR, i.e., request a reviewer, and assign the PR to you.
86
86
-[ ] Add appropriate labels such as `fix`, `enhancement`, `docs`, etc.
87
87
-[ ] If the change should also land in a release branch, add the matching `release/<branch>` label (e.g. `release/v1.1.0-incubating`); the change will be backported to that branch automatically.
88
-
-[ ] Ensure that all CI checks pass (see [GitHub Actions](https://github.com/Texera/texera/actions)).
88
+
-[ ] Ensure that all CI checks pass (see [GitHub Actions](https://github.com/apache/texera/actions)).
89
89
-[ ] Fully test your changes locally.
90
90
91
91
> ℹ️ If your PR is not ready for review, please mark it as a draft. You can change it to “Ready for review” when it is complete.
0 commit comments