-
-
Notifications
You must be signed in to change notification settings - Fork 49
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
Showing
1 changed file
with
4 additions
and
4 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 |
---|---|---|
|
@@ -12,15 +12,15 @@ Using with the default settings will check the `README.md` in your repository. | |
|
||
```yml | ||
- name: Link Checker | ||
uses: lycheeverse/[email protected].4 | ||
uses: lycheeverse/[email protected].6 | ||
``` | ||
This action uses [lychee] for link checking. | ||
lychee arguments can be passed to the action via the `args` parameter. If not set, the defaults are | ||
|
||
```yml | ||
- name: Link Checker | ||
uses: lycheeverse/[email protected].4 | ||
uses: lycheeverse/[email protected].6 | ||
with: | ||
args: --verbose --no-progress *.md | ||
``` | ||
|
@@ -52,7 +52,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Link Checker | ||
uses: lycheeverse/[email protected].4 | ||
uses: lycheeverse/[email protected].6 | ||
- name: Create Issue From File | ||
uses: peter-evans/create-issue-from-file@v2 | ||
with: | ||
|
@@ -74,7 +74,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- name: lychee Link Checker | ||
id: lychee | ||
uses: lycheeverse/[email protected].4 | ||
uses: lycheeverse/[email protected].6 | ||
- name: Fail if there were link errors | ||
run: exit ${{ steps.lychee.outputs.exit_code }} | ||
``` | ||
|