Skip to content

Commit

Permalink
add schedule build for gitea, reduce Lazy concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
Szwendacz99 committed Oct 14, 2023
1 parent 32be66a commit 0d1faed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .gitea/workflows/oci-image.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion lua/lazy-load.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0d1faed

Please sign in to comment.