This GitHub Action checks for broken symlinks within a Git repository. If any broken symlinks are found, it prints an error message and exits with a non-zero status; otherwise, it prints a success message and exits normally.
Include the action in your workflow.
- uses: feather-actions/check-broken-symlinks@0.0.2
Full example:
on: [push]
jobs:
check-broken-symlinks:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Check Broken Symlinks
uses: feather-actions/check-broken-symlinks@0.0.2