diff options
| author | Damjan 9000 <damjan.9000@gmail.com> | 2024-02-01 17:01:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-01 11:01:46 -0500 |
| commit | 82746c2032e79c5093f391b7fd103add8887b5fd (patch) | |
| tree | e5fe903b5439dce28cf22ce9725771a4bf560345 /nvim | |
| parent | f370e678140fbaef47bd4e363d2d62d8f6b0ff71 (diff) | |
| download | dots-82746c2032e79c5093f391b7fd103add8887b5fd.tar.gz | |
issue: #594 stylua workflow only on official kickstart repo (#609)
Only run the github stylua workflow check on the official
kickstart repo (nvim-lua/kickstart.nvim) so that it's not
enforced on any other forks.
As suggested by: @zwergius
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/.github/workflows/stylua.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nvim/.github/workflows/stylua.yml b/nvim/.github/workflows/stylua.yml index 5ec9dab..75db6c3 100644 --- a/nvim/.github/workflows/stylua.yml +++ b/nvim/.github/workflows/stylua.yml @@ -4,6 +4,7 @@ on: pull_request_target jobs: stylua-check: + if: github.repository == 'nvim-lua/kickstart.nvim' name: Stylua Check runs-on: ubuntu-latest steps: |