Skip to content

Update README.md

Update README.md #3

name: Primary PR Check – Broken Markdown Links
on:
push:
branches: [main]
paths:
- "**/*.md"
pull_request:
paths:
- "**/*.md"
permissions:
contents: read
concurrency:
group: pr-markdown-links-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
pr-check-broken-links:
runs-on: ${{ (github.event.pull_request.head.repo.full_name == github.repository && github.repository_owner == 'hiero-ledger') && 'hl-sdk-py-lin-md' || 'ubuntu-latest' }}
steps:
- name: Harden runner (audit outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Check Markdown links
uses: tcort/github-action-markdown-link-check@e7c7a18363c842693fadde5d41a3bd3573a7a225 # v1.1.2
with:
use-quiet-mode: "yes"
check-modified-files-only: "yes"
base-branch: "main"