Skip to content

Commit

Permalink
Resolve #34, Check for Dead Links in Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
NatVIII committed Feb 9, 2024
1 parent 6f9145e commit bd807be
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Links

on:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: "00 18 * * *"

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

- name: Link Checker
id: lychee
uses: lycheeverse/[email protected]
with:
args: --base . --verbose --no-progress './pages/**/*.*'

- name: Create Issue From File
if: env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@v4
with:
title: Link Checker Report
content-filepath: ./lychee/out.md
labels: report, automated issue

1 comment on commit bd807be

@vercel
Copy link

@vercel vercel bot commented on bd807be Feb 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

rva-rip – ./

rva-rip-git-main-my-team-66f1c945.vercel.app
rva-rip-my-team-66f1c945.vercel.app
www.rva.rip
rva.rip

Please sign in to comment.