Skip to content

Commit

Permalink
feat: enable link checker on pull request events
Browse files Browse the repository at this point in the history
  • Loading branch information
JeelRajodiya committed Mar 4, 2025
1 parent 03f4a04 commit 45fca0b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: Link Checker

on:
repository_dispatch:
pull_request:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
schedule:
- cron: '0 0 1 * *' # Run at midnight on the first of every month

Expand All @@ -17,6 +18,9 @@ jobs:
with:
submodules: 'recursive'

- name: Corepack enable
run: corepack enable

- name: Set up Node.js
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 45fca0b

Please sign in to comment.