Refresh command docs for Nu v0.95 #71
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comment on manual command changes | |
on: | |
pull_request: | |
paths: | |
- 'commands/docs/**' | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'Awesome that you are trying to improve the documentation of a nushell command!\n\n' + | |
'As we autogenerate these command pages from the help information defined with the command after each release:\n'+ | |
'- If you already updated the command help, you are already done!\n'+ | |
'- 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'+ | |
'Thanks for helping out!' | |
}) |