diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-01-28 11:47:45 +0100 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-01-28 16:15:57 +0100 |
| commit | b5736698be1dae39ebcaf771641a66503f3a87a9 (patch) | |
| tree | 1f2ef9a6dd5e9f54690f8fa1d9947f8c5957f814 /.github/workflows/lint.yml | |
| parent | Update parsers: awk, haskell, php, php_only (diff) | |
| download | nvim-treesitter-b5736698be1dae39ebcaf771641a66503f3a87a9.tar nvim-treesitter-b5736698be1dae39ebcaf771641a66503f3a87a9.tar.gz nvim-treesitter-b5736698be1dae39ebcaf771641a66503f3a87a9.tar.bz2 nvim-treesitter-b5736698be1dae39ebcaf771641a66503f3a87a9.tar.lz nvim-treesitter-b5736698be1dae39ebcaf771641a66503f3a87a9.tar.xz nvim-treesitter-b5736698be1dae39ebcaf771641a66503f3a87a9.tar.zst nvim-treesitter-b5736698be1dae39ebcaf771641a66503f3a87a9.zip | |
ci: use token for automated PRs
* Use a Github App token to allow CI to run automatically
(Following
https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#authenticating-with-github-app-generated-tokens)
* Enable automerge
* make lint workflow only run once on PRs to master
Diffstat (limited to '.github/workflows/lint.yml')
| -rw-r--r-- | .github/workflows/lint.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3092c418f..47a2ee386 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,8 +1,9 @@ name: Linting and style checking on: - push: pull_request: + branches: + - "master" jobs: luacheck: |
