Skip to content

Commit 5989387

Browse files
authored
GH-46378: [Docs] Remove references to autotune from the docs (#46379)
### Rationale for this change We removed broken dev functionality but it's still documented ### What changes are included in this PR? Remove references to autotune in the docs ### Are these changes tested? No ### Are there any user-facing changes? Just docs * GitHub Issue: #46378 Authored-by: Nic Crane <thisisnic@gmail.com> Signed-off-by: Nic Crane <thisisnic@gmail.com>
1 parent 2c66d62 commit 5989387

File tree

3 files changed

+2
-20
lines changed

3 files changed

+2
-20
lines changed

docs/source/developers/continuous_integration/overview.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ The ``.yml`` files in ``.github/workflows`` are workflows which are run on GitHu
5252
- ``comment_bot.yml`` - triggers certain actions by listening on github pull request comments for the following strings:
5353

5454
- ``@github-actions crossbow submit ...`` - runs the specified Crossbow command
55-
- ``@github-actions autotune`` - runs a number of stylers/formatters, builds some of the docs, and commits the results
5655
- ``@github-actions rebase`` - rebases the PR onto the main branch
5756
- ``dev.yml`` - runs any time there is activity on a PR, or a PR is merged; it runs the linter and tests that the PR can be merged
5857
- ``dev_pr.yml`` - runs any time a PR is opened or updated; checks the formatting of the PR title, adds assignee to the appropriate GitHub issue if needed (or adds a comment requesting the user to include the issue id in the title), and adds any relevant GitHub labels

docs/source/developers/cpp/development.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,6 @@ target that is executable from the root of the repository:
162162
163163
$ docker compose run ubuntu-lint
164164
165-
Alternatively, on an open pull request, the comment bot can format C++ code
166-
for you (it will push a commit to the branch that can then be pulled). Just
167-
comment the following::
168-
169-
@github-actions autotune
170-
171165
Cleaning includes with include-what-you-use (IWYU)
172166
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
173167

r/vignettes/developers/workflow.Rmd

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,9 @@ To run the linter locally, install the `{lintr}` package (note, we currently use
6161
lintr::lint_package("arrow/r")
6262
```
6363

64-
You can automatically change the formatting of the code in the package using the [styler](https://styler.r-lib.org/) package. There are two ways to do this:
64+
You can automatically change the formatting of the code in the package using the [styler](https://styler.r-lib.org/) package.
6565

66-
1. Use the comment bot to do this automatically with the command `@github-actions autotune` on a PR, and commit it back to the branch.
67-
68-
2. Run the styler locally either via Makefile commands:
66+
Run the styler locally either via Makefile commands:
6967

7068
```bash
7169
make style # (for only the files changed)
@@ -212,12 +210,3 @@ See the `r:` group definition near the beginning of the [crossbow configuration]
212210
for a list of glob expression patterns that match names of items in the `tasks:`
213211
list below it.
214212

215-
#### Run linting and documentation building tasks
216-
217-
```
218-
@github-actions autotune
219-
```
220-
221-
This will run and fix lint C++ linting errors, run R documentation (among other
222-
cleanup tasks), run styler on any changed R code, and commit the resulting
223-
updates to the branch.

0 commit comments

Comments
 (0)