Skip to content

Commit

Permalink
chore: support markdown link check action (#763)
Browse files Browse the repository at this point in the history
* chore: support markdown link check action

* trigger on reopened

* format

* fix action

* use commit sha

* fix
  • Loading branch information
acelyc111 authored Jun 15, 2021
1 parent 0abe90a commit 8f6efdb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/ci-pull-request-markdown-links.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Check Markdown links

on:
pull_request:
types: [ synchronize, opened, reopened ]

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
2 changes: 1 addition & 1 deletion .github/workflows/ci-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name: pull_request
on:
# run on each pull request
pull_request:
types: [ synchronize, opened ]
types: [ synchronize, opened, reopened ]
branches:
- master
- 'v[0-9]+.*' # release branch
Expand Down

0 comments on commit 8f6efdb

Please sign in to comment.