Skip to content

Commit

Permalink
test workflow for changed files
Browse files Browse the repository at this point in the history
Signed-off-by: Sudan Landge <sudanl@amazon.com>
  • Loading branch information
Sudan Landge committed Dec 22, 2023
1 parent 2913dac commit 042d3d2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/markdown_link_checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Check links in markdown documentation

on: pull_request

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: "Check Cargo.lock not in changeset"
run: |
git fetch origin
git diff origin/$GITHUB_BASE_REF.. --name-only| ( ! grep "*.md")

0 comments on commit 042d3d2

Please sign in to comment.