feat(neovim): update treesitter keymap #140
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: pull-request | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
pr-labeler: | |
name: PR Labeler | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v5 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
# workaround for sync-labels bug: | |
# https://github.com/actions/labeler/issues/112#issuecomment-1000491676 | |
# sync-labels: "" | |
configuration-path: ".github/labeler.yml" | |
pr-assigner: | |
name: Assign author to PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Assign author to PR | |
uses: technote-space/assign-author@9558557c5c4816f38bd06176fbc324ba14bb3160 # 1.6.2 |