Skip to content

Commit

Permalink
feat: add link check
Browse files Browse the repository at this point in the history
  • Loading branch information
vordimous committed Aug 27, 2024
1 parent 1b08a89 commit b0e07dd
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/links-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Link Checker

on:
push:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Link Checker
uses: lycheeverse/[email protected]
with:
fail: true
args: --exclude-mail --exclude .+localhost.+ .
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit b0e07dd

Please sign in to comment.