docs: NERDTree to NvimTree #296
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
# spelling.yml is blocked per https://github.com/check-spelling/check-spelling/security/advisories/GHSA-g86g-chm8-7r2p | |
name: Spell checking | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
pull_request_target: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
types: | |
- 'opened' | |
- 'reopened' | |
- 'synchronize' | |
jobs: | |
spelling: | |
name: Check Spelling | |
permissions: | |
contents: read | |
pull-requests: read | |
actions: read | |
security-events: write | |
outputs: | |
followup: ${{ steps.spelling.outputs.followup }} | |
runs-on: ubuntu-latest | |
if: "contains(github.event_name, 'pull_request') || github.event_name == 'push'" | |
concurrency: | |
group: spelling-${{ github.event.pull_request.number || github.ref }} | |
# note: If you use only_check_changed_files, you do not want cancel-in-progress | |
cancel-in-progress: true | |
steps: | |
- name: check-spelling | |
id: spelling | |
uses: check-spelling/[email protected] | |
with: | |
checkout: true | |
suppress_push_for_open_pull_request: 1 | |
post_comment: 0 | |
dictionary_source_prefixes: '{"cspell": "https://raw.githubusercontent.com/streetsidesoftware/cspell-dicts/cspell-dicts%408.0.0/dictionaries/"}' | |
extra_dictionaries: cspell:filetypes/filetypes.txt | |
cspell:lua/src/lua.txt | |
cspell:markdown/src/markdown.txt | |
check_extra_dictionaries: '' | |
comment-push: | |
name: Report (Push) | |
# If your workflow isn't running on push, you can remove this job | |
runs-on: ubuntu-latest | |
needs: spelling | |
permissions: | |
contents: write | |
if: (success() || failure()) && needs.spelling.outputs.followup && github.event_name == 'push' | |
steps: | |
- name: comment | |
uses: check-spelling/[email protected] | |
with: | |
checkout: true | |
task: ${{ needs.spelling.outputs.followup }} | |
comment-pr: | |
name: Report (PR) | |
# If you workflow isn't running on pull_request*, you can remove this job | |
runs-on: ubuntu-latest | |
needs: spelling | |
permissions: | |
pull-requests: write | |
if: (success() || failure()) && needs.spelling.outputs.followup && contains(github.event_name, 'pull_request') | |
steps: | |
- name: comment | |
uses: check-spelling/[email protected] | |
with: | |
checkout: true | |
task: ${{ needs.spelling.outputs.followup }} |