add schedule build for gitea, reduce Lazy concurrency
This commit is contained in:
parent
32be66a855
commit
0d1faed2e2
2 changed files with 6 additions and 2 deletions
|
@ -1,6 +1,10 @@
|
|||
name: Gitea Actions Demo
|
||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
schedule:
|
||||
- cron: '30 12 */3 * *'
|
||||
|
||||
jobs:
|
||||
Explore-Gitea-Actions:
|
||||
|
|
|
@ -175,7 +175,7 @@ require("lazy").setup({
|
|||
-- leave nil when passing the spec as the first argument to setup()
|
||||
spec = nil, ---@type LazySpec
|
||||
lockfile = vim.fn.stdpath("config") .. "/lazy-lock.json", -- lockfile generated after running update.
|
||||
concurrency = 4, ---@type number limit the maximum amount of concurrent tasks
|
||||
concurrency = 1, ---@type number limit the maximum amount of concurrent tasks
|
||||
git = {
|
||||
-- defaults for the `Lazy log` command
|
||||
-- log = { "-10" }, -- show the last 10 commits
|
||||
|
|
Loading…
Reference in a new issue