Skip to content

Commit

Permalink
Skip Git linter on scheduled event (#188)
Browse files Browse the repository at this point in the history
There's a bug or something on the scheduled build, so skip it for now.

Following the docs:
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsif
  • Loading branch information
tombruijn authored Jan 12, 2024
1 parent b2a50a2 commit 45c68a9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
lint-git:
name: "Git linter (Lintje)"
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 45c68a9

Please sign in to comment.