Skip to content

Commit

Permalink
Merge pull request #296 from k-dimple/main
Browse files Browse the repository at this point in the history
Add a GitHub action for periodically running vale
  • Loading branch information
evilnick authored Oct 11, 2024
2 parents 7a5644d + c298929 commit 0fadd8f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions sp-files/.github/workflows/periodic-style-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Periodic Style Checks

on:
schedule:
- cron: "0 1 * * 4" # Runs at 01:00 AM on every Wednesday

jobs:
vale:
name: Style checker
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
working-directory: 'sp-docs'
steps:
- uses: actions/checkout@v4
- name: Run vale
run: |
make vale

0 comments on commit 0fadd8f

Please sign in to comment.