cds-1666 Add support for Assuming Role, Custom Role and Parameter to select Concurrency Limit #136
Workflow file for this run
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
name: Documents Validation | |
# the action will validate all of the .md files in the repo | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches: [master] | |
paths: | |
- "*.md" | |
jobs: | |
check-docs: | |
runs-on: ubuntu-latest | |
name: Check Documentation formatting and links | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
npm install -g markdown-link-check | |
- name: Check documentation formatting and links | |
run: | | |
find . -regex ".*\.md" -exec markdown-link-check -c .markdownlinkcheckconfig.json {} \; |