summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-10-17 17:29:15 +0200
committerkylo252 <[email protected]>2022-10-17 17:29:15 +0200
commit4ef07315003f723bb8e97d5a91b2bde3773ec1b8 (patch)
treee9889a492f76e3f9573228343aaba647dfd48136 /.github
parente4a5fe97abe500bbbe78fb137d57a59f558da05a (diff)
parent6f6cbc394d2a7e64964b6067a2f42d2e6a07824e (diff)
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to '.github')
-rw-r--r--.github/FUNDING.yml3
-rw-r--r--.github/ISSUE_TEMPLATE/general-issue-form.yaml2
-rw-r--r--.github/ISSUE_TEMPLATE/lsp-issue-form.yaml2
-rw-r--r--.github/workflows/close-inactive-bot.yml22
-rw-r--r--.github/workflows/commitlint.yml4
-rw-r--r--.github/workflows/format.yaml7
-rw-r--r--.github/workflows/install.yaml12
-rw-r--r--.github/workflows/lint.yaml4
-rw-r--r--.github/workflows/plugins.yml6
9 files changed, 42 insertions, 20 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 255497d6..88a6b71e 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -2,4 +2,5 @@
github: christianchiarulli
patreon: chrisatmachine
-
+ko_fi: chrisatmachine
+custom: ["https://www.buymeacoffee.com/chrisatmachine", "https://www.paypal.com/paypalme/chrisatmachine", "https://strike.me/chrisatmachine"]
diff --git a/.github/ISSUE_TEMPLATE/general-issue-form.yaml b/.github/ISSUE_TEMPLATE/general-issue-form.yaml
index ea8c9cba..8faff6ae 100644
--- a/.github/ISSUE_TEMPLATE/general-issue-form.yaml
+++ b/.github/ISSUE_TEMPLATE/general-issue-form.yaml
@@ -33,7 +33,7 @@ body:
- type: input
id: nvim-version
attributes:
- label: Neovim version (>= 0.7.2)
+ label: Neovim version (>= 0.8.0)
description: "Output of `nvim --version`"
placeholder: |
NVIM v0.8.0-dev+199-g2875d45e7
diff --git a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
index e8079ffa..b3d4713b 100644
--- a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
+++ b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
@@ -27,7 +27,7 @@ body:
- type: input
id: nvim-version
attributes:
- label: Neovim version (>= 0.7)
+ label: Neovim version (>= 0.8.0)
description: "Output of `nvim --version`"
placeholder: |
NVIM v0.8.0-dev+199-g2875d45e7
diff --git a/.github/workflows/close-inactive-bot.yml b/.github/workflows/close-inactive-bot.yml
new file mode 100644
index 00000000..0ae33625
--- /dev/null
+++ b/.github/workflows/close-inactive-bot.yml
@@ -0,0 +1,22 @@
+name: Close inactive issues
+on:
+ schedule:
+ - cron: '30 1 * * *'
+
+jobs:
+ close-issues:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - uses: actions/stale@v5
+ with:
+ days-before-issue-stale: 30
+ days-before-issue-close: 14
+ stale-issue-label: 'stale'
+ stale-issue-message: 'This issue is stale because it has been open for 30 days with no activity.'
+ close-issue-message: 'This issue was closed because it has been inactive for 14 days since being marked as stale.'
+ days-before-pr-stale: -1
+ days-before-pr-close: -1
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml
index 1bae3a10..400b0bd0 100644
--- a/.github/workflows/commitlint.yml
+++ b/.github/workflows/commitlint.yml
@@ -10,10 +10,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- - uses: actions/[email protected]
+ - uses: actions/checkout@v3
with:
fetch-depth: 0
- - uses: wagoid/commitlint-github-action@v4
+ - uses: wagoid/commitlint-github-action@v5
with:
configFile: .github/workflows/commitlint.config.js
helpURL: https://github.com/LunarVim/LunarVim/blob/rolling/CONTRIBUTING.md#commit-messages
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml
index b63b89d7..64da97e6 100644
--- a/.github/workflows/format.yaml
+++ b/.github/workflows/format.yaml
@@ -15,20 +15,21 @@ jobs:
name: "Formatting check with Stylua"
runs-on: ubuntu-20.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Lint with stylua
- uses: JohnnyMorganz/[email protected]
+ uses: JohnnyMorganz/stylua-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# CLI arguments
+ version: 0.15.1
args: --check .
shfmt-check:
name: "Formatting check with shfmt"
runs-on: ubuntu-20.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml
index e21607ab..5f72bcac 100644
--- a/.github/workflows/install.yaml
+++ b/.github/workflows/install.yaml
@@ -21,10 +21,10 @@ jobs:
include:
- runner: ubuntu-latest
os: linux
- neovim: v0.7.0
+ neovim: v0.8.0
- runner: macos-latest
os: osx
- neovim: v0.7.0
+ neovim: v0.8.0
- runner: ubuntu-22.04
os: linux
neovim: nightly
@@ -33,13 +33,13 @@ jobs:
neovim: nightly
runs-on: ${{ matrix.runner }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install neovim binary from release
env:
RELEASE_VER: ${{ matrix.neovim }}
run: |
- echo "$HOME/.local/bin" >> $GITHUB_PATH
+ echo "$HOME/.local/bin" >> "$GITHUB_PATH"
bash ./utils/installer/install-neovim-from-release
- name: Install LunarVim
@@ -72,13 +72,13 @@ jobs:
shell: pwsh
steps:
# it's not currently possbile to run tests on windows, see nvim-lua/plenary.nvim#255
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install neovim binary
uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.7.0
+ version: v0.8.0
- name: Install LunarVim
timeout-minutes: 4
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
index c238a5d1..f136d442 100644
--- a/.github/workflows/lint.yaml
+++ b/.github/workflows/lint.yaml
@@ -15,7 +15,7 @@ jobs:
name: "Linting with luacheck"
runs-on: ubuntu-20.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- uses: leafo/gh-actions-lua@v8
- uses: leafo/gh-actions-luarocks@v4
@@ -30,7 +30,7 @@ jobs:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml
index 3df32105..46c88c81 100644
--- a/.github/workflows/plugins.yml
+++ b/.github/workflows/plugins.yml
@@ -25,15 +25,13 @@ jobs:
contents: write
pull-requests: write
steps:
- - uses: actions/checkout@v2
- with:
- ref: ${{ github.head_ref }}
+ - uses: actions/checkout@v3
- name: Install neovim binary
uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.7.0
+ version: nightly
- name: Install LunarVim
timeout-minutes: 4