Skip to content

Commit

Permalink
fix(ci): update auto commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mcchrish committed Aug 8, 2024
1 parent 8e63b5e commit 8374771
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: NTBBloodbath/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: panvimdoc
uses: kdheepak/panvimdoc@main
with:
Expand All @@ -37,9 +37,11 @@ jobs:

build:
runs-on: ubuntu-latest
permissions:
contents: write
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Clone lush
run: |
Expand Down Expand Up @@ -68,22 +70,22 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: JohnnyMorganz/stylua-action@v2
with:
version: latest
token: ${{ secrets.GITHUB_TOKEN }}
args: --config-path=.stylua.toml lua/

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
- name: Apply prettier
run: |
npm install -g prettier
prettier --write **/*.md
- name: Push changes
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore(build): format"
commit_user_name: "github-actions[bot]"
Expand All @@ -99,12 +101,12 @@ jobs:
- format
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: simple
package-name: zenbones.nvim
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: tag stable versions
if: ${{ steps.release.outputs.release_created }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync_remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, delete]
jobs:
push:
runs-on: ubuntu-latest
if: github.repository == 'mcchrish/zenbones.nvim'
if: github.repository == 'zenbones-theme/zenbones.nvim'
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion doc/showcase.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Showcase

See also the
[vimcolorschemes page](https://vimcolorschemes.com/mcchrish/zenbones.nvim).
[vimcolorschemes page](https://vimcolorschemes.com/zenbones-theme/zenbones.nvim).

## Neobones

Expand Down

0 comments on commit 8374771

Please sign in to comment.