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
body: 'Awesome that you are trying to improve the documentation of a nushell command!\n\n' +
19
-
'As we autogenerate these command pages from the help information defined with the command after each release:\n'+
20
-
'- If you already updated the command help, you are already done!\n'+
21
-
'- Else, please look for the command in the [source tree](https://github.com/nushell/nushell/tree/main/crates) and make your changes directly there.\n\n'+
23
+
'**You should not modify the files in `commands/docs` or `commands/categories`!**\n' +
24
+
'We autogenerate these command pages from the `help` information defined by the command implementation, after each release. Thus:\n'+
25
+
'- If you already updated the command help, you are already done and can close this PR!\n'+
26
+
'- Else, please look for the command in the [source tree](https://github.com/nushell/nushell/tree/main/crates) and make your changes directly there in the `impl Command` and `Signature`.\n'+
27
+
'- If you accidentally made a change in `commands/` while working on general documentation, please revert changes to `commands/`\n\n'+
22
28
'Thanks for helping out!'
23
29
})
30
+
- run: |
31
+
echo "This PR touched autogenerated command docs. If you are not a maintainer of the autogenerated docs, please revert changes to `commands/docs/**` and make the change on the nushell side"
0 commit comments