Skip to content

Commit

Permalink
Run link check twice per month rather than on every PR
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlattimore committed Jan 22, 2025
1 parent 3c3af95 commit 4de54e5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,3 @@ jobs:
with:
components: rustfmt
- run: cargo fmt --all -- --check

markdown-link-check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: gaurav-nelson/github-action-markdown-link-check@v1
13 changes: 13 additions & 0 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
schedule:
- cron: '35 12 9,22 * *'
workflow_dispatch:

name: Cron continuous integration

jobs:
markdown-link-check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: gaurav-nelson/github-action-markdown-link-check@v1

0 comments on commit 4de54e5

Please sign in to comment.