mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-27 19:24:13 +00:00
Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 5 to 6. - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v5...v6) --- updated-dependencies: - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
950 B
YAML
30 lines
950 B
YAML
name: Community
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
community:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'folke' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: folke/github/neovim@main
|
|
- name: Rockspec Build
|
|
id: rockspec-build
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: build
|
|
key: rockspec-build
|
|
- name: Generate Rockspec
|
|
if: steps.rockspec-build.cache-hit != 'true'
|
|
run: |
|
|
nvim -l lua/lazy/build.lua
|
|
- name: Push changes
|
|
uses: stefanzweifel/git-auto-commit-action@v6
|
|
with:
|
|
commit_message: "chore(build): auto-generate rockspec mappings"
|
|
commit_user_name: "github-actions[bot]"
|
|
commit_user_email: "github-actions[bot]@users.noreply.github.com"
|
|
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
|