LunarVim/.github/workflows/plugins.yml

65 lines
1.8 KiB
YAML
Raw Normal View History

2022-03-25 14:55:53 +01:00
name: plugins-version-bump
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: false
default: 'warning'
type: choice
options:
- info
- warning
- debug
schedule:
# note: this will keep updating the existing branch
- cron: "*/15 10-14 * * 0,6"
- cron: "0 14 * * 1-5"
2022-03-25 14:55:53 +01:00
jobs:
plugins-version-bump:
if: github.repository_owner == 'LunarVim'
2022-03-25 14:55:53 +01:00
runs-on: ubuntu-latest
2022-10-29 18:23:34 +02:00
continue-on-error: false
2022-03-25 14:55:53 +01:00
permissions:
contents: write
pull-requests: write
2022-03-25 14:55:53 +01:00
steps:
- uses: actions/checkout@v3
2022-03-25 14:55:53 +01:00
- name: Install neovim binary
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: stable
2022-03-25 14:55:53 +01:00
- name: Install LunarVim
timeout-minutes: 4
run: |
./utils/installer/install.sh --local --no-install-dependencies
- name: run upgrade script
run: make generate_new_lockfile
- name: Re-install LunarVim
timeout-minutes: 4
run: |
./utils/installer/uninstall.sh --remove-backups --remove-config
2022-03-25 14:55:53 +01:00
./utils/installer/install.sh --local --no-install-dependencies
- name: Run unit-tests
# NOTE: make sure to adjust the timeout if you start adding a lot of tests
timeout-minutes: 4
run: make test
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
branch: plugins-bump
delete-branch: true # Delete the branch when closing pull requests, and when undeleted after merging.
token: ${{ secrets.GITHUB_TOKEN }}
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2022-03-25 14:55:53 +01:00
title: "chore: bump plugins version"
2022-03-26 14:28:31 +01:00
commit-message: "chore: bump plugins version"