From e31b5b06de4d99276f13e42bdd1c1d9415452f3f Mon Sep 17 00:00:00 2001 From: shankari Date: Sat, 28 Mar 2020 11:55:20 -0700 Subject: [PATCH 1/3] Create link-checks.yml --- .github/workflows/link-checks.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/link-checks.yml diff --git a/.github/workflows/link-checks.yml b/.github/workflows/link-checks.yml new file mode 100644 index 0000000..2355723 --- /dev/null +++ b/.github/workflows/link-checks.yml @@ -0,0 +1,20 @@ +name: Check Markdown links + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Link Checker + id: lc + uses: peter-evans/link-checker@v1 + with: + args: -v -r * + - name: Fail if there were link errors + run: exit ${{ steps.lc.outputs.exit_code }} From ac1dfd3d1814650d934d59f5a68033b2f82bba6e Mon Sep 17 00:00:00 2001 From: shankari Date: Sat, 28 Mar 2020 17:00:09 -0700 Subject: [PATCH 2/3] Remove broken link --- docs/dev/tutorial/small_ui_changes/simple_client_changes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/dev/tutorial/small_ui_changes/simple_client_changes.md b/docs/dev/tutorial/small_ui_changes/simple_client_changes.md index 7206df4..50c6365 100644 --- a/docs/dev/tutorial/small_ui_changes/simple_client_changes.md +++ b/docs/dev/tutorial/small_ui_changes/simple_client_changes.md @@ -9,6 +9,6 @@ As you look for your own tutorials, make sure they are using version 1 of the UI 1. [Change summary and consent](summary_and_consent.md) 2. [Remove a tab](remove_tab.md) -3. [Change colors](change_colors_to_your_theme.md) -4. [Display a customized survey](customized_survey.md) +3. Change colors (:construction:) +4. Display a customized survey (:construction:) 5. [Change the trip end prompt](change_trip_end_prompt.md) From 7b480a2a242cdf4030036279e3905f8b23c4338e Mon Sep 17 00:00:00 2001 From: shankari Date: Sat, 28 Mar 2020 17:09:51 -0700 Subject: [PATCH 3/3] Update link-checks.yml --- .github/workflows/link-checks.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/link-checks.yml b/.github/workflows/link-checks.yml index 2355723..7549f0d 100644 --- a/.github/workflows/link-checks.yml +++ b/.github/workflows/link-checks.yml @@ -10,11 +10,5 @@ jobs: markdown-link-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Link Checker - id: lc - uses: peter-evans/link-checker@v1 - with: - args: -v -r * - - name: Fail if there were link errors - run: exit ${{ steps.lc.outputs.exit_code }} + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@0.6.0