Neovim: Skipping text check as LTeX has been disabled for files with code language ID 'tex' via ltex.enabled #236
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
# Copyright (C) 2019-2023 Julian Valentin, LTeX Development Community | |
# | |
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | |
name: "Label Commenter" | |
on: | |
issues: | |
types: | |
- "labeled" | |
- "unlabeled" | |
pull_request_target: | |
types: | |
- "labeled" | |
- "unlabeled" | |
jobs: | |
comment: | |
name: "Label Commenter Job" | |
runs-on: "ubuntu-20.04" | |
steps: | |
- uses: "actions/checkout@v3" | |
with: | |
ref: "develop" | |
- name: "Run Label Commenter" | |
uses: "peaceiris/[email protected]" | |
with: | |
github_token: "${{ secrets.GITHUB_TOKEN }}" | |
config_file: ".github/label-commenter-config.yml" |