feat: add toggling of inline_completion feature in Neovim
#733
This file contains hidden or 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: AstroNvim | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| pull_request_target: | |
| types: [opened, edited, synchronize] | |
| jobs: | |
| CI: | |
| uses: AstroNvim/.github/.github/workflows/plugin_ci.yml@main | |
| if: ${{ github.event_name != 'pull_request_target' }} | |
| secrets: inherit | |
| with: | |
| plugin_name: ${{ github.event.repository.name }} | |
| is_production: ${{ github.event_name == 'push' }} | |
| PR: | |
| uses: AstroNvim/.github/.github/workflows/validate_pr.yml@main | |
| if: ${{ github.event_name == 'pull_request_target' }} | |
| secrets: inherit |