@@ -4,6 +4,11 @@ on:
pull_request:
branches:
- "rolling"
+ paths:
+ - 'lua/**'
+ - 'snapshots/**'
+ - 'tests/**'
+ - 'utils/**'
jobs:
stylua-check:
@@ -5,6 +5,11 @@ on:
- "master"
unixish:
lua-linter:
@@ -13,13 +13,17 @@ on:
- warning
- debug
schedule:
- - cron: "30 18 * * 1,5"
+ # note: this will keep updating the existing branch
+ - cron: "*/15 10-14 * * 0,6"
+ - cron: "0 14 * * 1-5"
plugins-version-bump:
runs-on: ubuntu-latest
+ continue-on-error: true
permissions:
contents: write
+ pull-requests: write
steps:
- uses: actions/checkout@v2
with:
@@ -161,24 +161,22 @@ function M.toggle_popup(ft)
local content_provider = function(popup)
local content = {}
- for _, section in
- ipairs {
- M.banner,
- { "" },
- header,
- lsp_info,
- override_info,
- formatters_info,
- linters_info,
- code_actions_info,
- }
- do
+ for _, section in ipairs {
+ M.banner,
+ { "" },
+ header,
+ lsp_info,
+ override_info,
+ formatters_info,
+ linters_info,
+ code_actions_info,
+ } do
vim.list_extend(content, section)
end