Skip to content

Commit

Permalink
Keep fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
enolfc committed Apr 26, 2024
1 parent ae92749 commit 24f2a20
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Lint

on: [push, pull_request]
on: pull_request

permissions: read-all

Expand All @@ -14,6 +14,11 @@ jobs:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v4
with:
# Make sure the actual branch is checked out when running on PR
ref: ${{ github.event.pull_request.head.sha }}
# Full git history needed to get proper list of changed files
fetch-depth: 0

# Runs the Super-Linter action
- name: Run Super-Linter on new changes
Expand Down

0 comments on commit 24f2a20

Please sign in to comment.