Skip to content

Commit

Permalink
Add a GitHub action for periodically running vale
Browse files Browse the repository at this point in the history
  • Loading branch information
k-dimple committed Oct 10, 2024
1 parent 7a5644d commit 3fe2dcd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .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 3fe2dcd

Please sign in to comment.