mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-01 20:23:39 +00:00
1e026fb3a1
Signed-off-by: Kang HuaiShuai <khs1994@khs1994.com>
25 lines
564 B
Go
25 lines
564 B
Go
name: check-link
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
check-link:
|
|
name: check-link
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
with:
|
|
fetch-depth: 1
|
|
- run: |
|
|
docker run -i --rm \
|
|
-v $PWD:/mnt:ro \
|
|
dkhamsing/awesome_bot \
|
|
--white-list "localhost","0.0.0.0","172.16.238.100","server","example.com",\
|
|
"docker.domain.com","YourIP","registry" \
|
|
--allow-dupe \
|
|
--skip-save-results \
|
|
`find . -name "*.md"`
|
|
name: check-link
|