Skip to content

Commit 45fca0b

Browse files
committed
feat: enable link checker on pull request events
1 parent 03f4a04 commit 45fca0b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/link-checker.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Link Checker
22

33
on:
44
repository_dispatch:
5-
pull_request:
65
workflow_dispatch:
6+
pull_request:
7+
types: [opened, synchronize, reopened]
78
schedule:
89
- cron: '0 0 1 * *' # Run at midnight on the first of every month
910

@@ -17,6 +18,9 @@ jobs:
1718
with:
1819
submodules: 'recursive'
1920

21+
- name: Corepack enable
22+
run: corepack enable
23+
2024
- name: Set up Node.js
2125
uses: actions/setup-node@v4
2226
with:

0 commit comments

Comments
 (0)