mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-28 02:10:27 +00:00
Bumps the dependencies group with 2 updates: [peter-evans/dockerhub-description](https://github.com/peter-evans/dockerhub-description) and [peter-evans/create-issue-from-file](https://github.com/peter-evans/create-issue-from-file). Updates `peter-evans/dockerhub-description` from 3 to 4 - [Release notes](https://github.com/peter-evans/dockerhub-description/releases) - [Commits](https://github.com/peter-evans/dockerhub-description/compare/v3...v4) Updates `peter-evans/create-issue-from-file` from 4 to 5 - [Release notes](https://github.com/peter-evans/create-issue-from-file/releases) - [Commits](https://github.com/peter-evans/create-issue-from-file/compare/v4...v5) --- updated-dependencies: - dependency-name: peter-evans/dockerhub-description dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: peter-evans/create-issue-from-file dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 lines
666 B
YAML
26 lines
666 B
YAML
name: Links
|
|
|
|
on:
|
|
repository_dispatch:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "00 18 * * *"
|
|
|
|
jobs:
|
|
linkChecker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@master
|
|
with:
|
|
args: --verbose --no-progress --exclude example.com -- README.md
|
|
|
|
- name: Create Issue From File
|
|
if: github.repository_owner == 'lycheeverse' && env.lychee_exit_code != 0
|
|
uses: peter-evans/create-issue-from-file@v5
|
|
with:
|
|
title: Link Checker Report
|
|
content-filepath: ./lychee/out.md
|
|
labels: report, automated issue
|