-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00a13bd
commit 2f0847d
Showing
1 changed file
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,34 +7,34 @@ on: | |
- cron: "0 3 * * *" | ||
|
||
jobs: | ||
lint: | ||
name: links-check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
|
||
- name: Get Current Timestamp | ||
id: timestamp | ||
run: echo "TIMESTAMP=$(date +%s)" >> "$GITHUB_ENV" | ||
|
||
- name: Restore lychee cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: .lycheecache | ||
key: "cache-lychee-${{ env.TIMESTAMP }}" | ||
restore-keys: cache-lychee- | ||
|
||
- name: Link Checker | ||
uses: lycheeverse/[email protected] | ||
with: | ||
fail: true | ||
args: -c ./lychee.toml --base . --cache --max-cache-age 1d . --verbose --no-progress 'docs/**/*.md' 'versioned_docs/**/*.md' | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
lint: | ||
name: links-check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
|
||
- name: Create Issue From File | ||
if: ${{ github.event_name == 'schedule' && 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 | ||
- name: Get Current Timestamp | ||
id: timestamp | ||
run: echo "TIMESTAMP=$(date +%s)" >> "$GITHUB_ENV" | ||
|
||
- name: Restore lychee cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: .lycheecache | ||
key: "cache-lychee-${{ env.TIMESTAMP }}" | ||
restore-keys: cache-lychee- | ||
|
||
- name: Link Checker | ||
uses: lycheeverse/[email protected] | ||
with: | ||
fail: true | ||
args: -c ./lychee.toml --base . --cache --max-cache-age 1d . --verbose --no-progress 'docs/**/*.md' 'versioned_docs/**/*.md' | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Create Issue From File | ||
if: ${{ github.event_name == 'schedule' && 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 |