bug: patterns-files defaults to README.md instead of fetching all files #71
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The default for
patterns-filesisREADME.md:This means if you set
patterns-repobut omitpatterns-files, you only get the README — not the actual pattern files.Expected Behavior
The common case is "fetch all pattern files from the repo". Users who set
patterns-repo: rodin/security-patternsexpect to get all 20+ pattern files, not just the README.Fix
Change default from
README.mdto""(empty string), which fetches all files in the repo root.Users who only want specific files can still set
patterns-files: README.md,patterns/foo.mdexplicitly.