diff --git a/pipelines/test/tw/symlink-check.yaml b/pipelines/test/tw/symlink-check.yaml index d96bb72..de85673 100644 --- a/pipelines/test/tw/symlink-check.yaml +++ b/pipelines/test/tw/symlink-check.yaml @@ -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). @@ -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: @@ -53,5 +41,4 @@ pipeline: runs: | symlink-check \ --allow-absolute="${{inputs.allow-absolute}}" \ - --allow-dangling="${{inputs.allow-dangling}}" \ --packages="${{inputs.packages}}"