diff options
| author | Damjan 9000 <damjan.9000@gmail.com> | 2024-01-03 18:30:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-03 12:30:37 -0500 |
| commit | da3895c7996720552dbef774fb6c607322b3bd58 (patch) | |
| tree | 6bae9f857de7430cec6f473b993ff7e05b9912b5 /nvim/.github | |
| parent | d6dc65155a8746e566b6d9ed1a618e745723ef41 (diff) | |
| download | dots-da3895c7996720552dbef774fb6c607322b3bd58.tar.gz | |
Improve stylua github workflow (#571)
Addressing issue nvim-lua/kickstart.nvim#570
This improves the github workflow to no longer require manual
approval for PRs from first time contributors.
Changes the github event from pull_request to pull_request_target
and adds an explicit PR head checkout
Diffstat (limited to 'nvim/.github')
| -rw-r--r-- | nvim/.github/workflows/stylua.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nvim/.github/workflows/stylua.yml b/nvim/.github/workflows/stylua.yml index e189fe0..5ec9dab 100644 --- a/nvim/.github/workflows/stylua.yml +++ b/nvim/.github/workflows/stylua.yml @@ -1,6 +1,6 @@ # Check Lua Formatting name: Check Lua Formatting -on: pull_request +on: pull_request_target jobs: stylua-check: @@ -9,6 +9,8 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v2 + with: + ref: ${{ github.event.pull_request.head.sha }} - name: Stylua Check uses: JohnnyMorganz/stylua-action@v3 with: |