Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions pipelines/test/tw/symlink-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@ inputs:
Use "none" to disable the default package check.
required: false
default: "${{context.name}}"
allow-dangling:
description: |
Allow dangling (broken) symlinks that point to non-existent targets.
Set to "true" if the package intentionally includes symlinks to files provided by other packages.
Default is false (dangling symlinks cause test failure).
default: false
required: false
allow-absolute:
description: |
Allow absolute symlinks (e.g., /usr/bin/foo -> /usr/lib/bar).
Expand All @@ -38,11 +31,6 @@ inputs:
# Basic check (all symlinks in current package):
# - uses: test/tw/symlink-check
#
# Allow dangling symlinks (for cross-package references):
# - uses: test/tw/symlink-check
# with:
# allow-dangling: true
#
# Allow absolute symlinks:
# - uses: test/tw/symlink-check
# with:
Expand All @@ -53,5 +41,4 @@ pipeline:
runs: |
symlink-check \
--allow-absolute="${{inputs.allow-absolute}}" \
--allow-dangling="${{inputs.allow-dangling}}" \
--packages="${{inputs.packages}}"