Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links #24577

Merged
merged 2 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ about: Create a report to help us improve

<!--

Thank you for reporting a bug in InfluxDB IOx.
Thank you for reporting a bug in InfluxDB IOx.

Have you read the contributing section of the README? Please do if you haven't.
https://github.com/influxdata/influxdb_iox/blob/main/README.md
https://github.com/influxdata/influxdb/blob/main/README.md

* Please ask usage questions in the Influx Slack (there is an #influxdb-iox channel).
* https://influxdata.com/slack
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/developer_experience.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ about: Tell us about slow builds, tests, and code editing
Thank you for sharing your development experience concerns with the InfluxDB IOx team.

Have your read the contributing guide?
https://github.com/influxdata/influxdb_iox/blob/main/CONTRIBUTING.md
https://github.com/influxdata/influxdb/blob/main/CONTRIBUTING.md

We welcome your thoughts and feedback on the IOx developer experience.

Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ about: Opening a feature request kicks off a discussion

<!--

Thank you for suggesting an idea to improve InfluxDB IOx.
Thank you for suggesting an idea to improve InfluxDB IOx.

Have you read the contributing section of the README? Please do if you haven't.
https://github.com/influxdata/influxdb_iox/blob/main/README.md
https://github.com/influxdata/influxdb/blob/main/README.md

* Please ask usage questions in the Influx Slack (there is an #influxdb-iox channel).
* https://influxdata.com/slack
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Closes #

Describe your proposed changes here.

- [ ] I've read the contributing section of the project [README](https://github.com/influxdata/influxdb_iox/blob/main/README.md).
- [ ] I've read the contributing section of the project [README](https://github.com/influxdata/influxdb/blob/main/README.md).
- [ ] Signed [CLA](https://influxdata.com/community/cla/) (if not already signed).
14 changes: 7 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ As well as bug reports we also welcome feature requests (there is a dedicated is
Typically, the maintainers will periodically review community feature requests and make decisions about if we want to add them.
For features we don't plan to support we will close the feature request ticket (so, again, please check closed tickets for feature requests before submitting them).

[issue]: https://github.com/influxdata/influxdb_iox/issues/new
[New Issue]: https://github.com/influxdata/influxdb_iox/issues/new
[issue]: https://github.com/influxdata/influxdb/issues/new
[New Issue]: https://github.com/influxdata/influxdb/issues/new
[How to Report Bugs Effectively]: https://www.chiark.greenend.org.uk/~sgtatham/bugs.html

## Contributing Changes
Expand All @@ -41,12 +41,12 @@ All code must adhere to the `rustfmt` format, and pass all of the `clippy` check

### Finding Issues To Work On

The [good first issue](https://github.com/influxdata/influxdb_iox/labels/good%20first%20issue) and the [help wanted](https://github.com/influxdata/influxdb_iox/labels/help%20wanted) labels are used to identify issues where we encourage community contributions.
The [good first issue](https://github.com/influxdata/influxdb/issues?q=is%3Aopen+is%3Aissue+label%3Agood-first-issue) and the [help wanted](https://github.com/influxdata/influxdb/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted) labels are used to identify issues where we encourage community contributions.
They both indicate issues for which we would welcome independent community contributions, but the former indicates a sub-set of these that are especially good for first-time contributors.
If you want some clarifications or guidance for working on one of these issues, or you simply want to let others know that you're working on one, please leave a comment on the ticket.

[good first issue]: https://github.com/influxdata/influxdb_iox/labels/good%20first%20issue
[help wanted]: https://github.com/influxdata/influxdb_iox/labels/help%20wanted
[good first issue]: https://github.com/influxdata/influxdb/issues?q=is%3Aopen+is%3Aissue+label%3Agood-first-issue
[help wanted]: https://github.com/influxdata/influxdb/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted

### Bigger Changes

Expand All @@ -67,7 +67,7 @@ Further, please don't expect us to accept significant changes without new test c
### Making a PR

To open a PR you will need to have a Github account.
Fork the `influxdb_iox` repo and work on a branch on your fork.
Fork the `influxdb` repo and work on a branch on your fork.
When you have completed your changes, or you want some incremental feedback make a Pull Request to InfluxDB IOx [here].

If you want to discuss some work in progress then please prefix `[WIP]` to the
Expand All @@ -88,7 +88,7 @@ There are some tips on verifying the above in the [next section](#running-tests)
* ask for help on the PR if any of the status checks are 🔴, and you don't know why;
* wait patiently for one of the team to review your PR, which could take a few days.

[here]: https://github.com/influxdata/influxdb_iox/compare
[here]: https://github.com/influxdata/influxdb/compare
[Conventional Commits]: https://www.conventionalcommits.org/en/v1.0.0/

## Running Tests
Expand Down
Loading