mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-01-23 18:06:01 +00:00
22 lines
573 B
YAML
22 lines
573 B
YAML
on:
|
|
repository_dispatch:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "00 18 * * *"
|
|
name: Check markdown links
|
|
jobs:
|
|
linkChecker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@cb79c9607b37671965f8dbb54cae47795758a440 #1.1.1
|
|
with:
|
|
args: README.md
|
|
- name: Create Issue From File
|
|
uses: peter-evans/create-issue-from-file@v2
|
|
with:
|
|
title: "[Bot] Broken Links Report"
|
|
content-filepath: ./lychee/out.md
|
|
labels: report
|