We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lets say my repo looks like this:
my_repo │ ├ sub_repo1 │ ├ README.md │ └ other files... │ └ sub_repo2 └ other files...
I want to enforce a rule where all sub-repos will contain a top-level README.md file, otherwise failure. If I use the glob pattern like so:
with: files: "*/AUTHORS.txt" fails: true
it won't work because the file sub_repo1/README.md satisfies the rule. How can I make it so that the file must exist in ALL subrepos?
sub_repo1/README.md
The text was updated successfully, but these errors were encountered:
Same problem for me
Sorry, something went wrong.
I have tested the forked versions and there is one that has solved this issue
No branches or pull requests
Lets say my repo looks like this:
I want to enforce a rule where all sub-repos will contain a top-level README.md file, otherwise failure. If I use the glob pattern like so:
it won't work because the file
sub_repo1/README.md
satisfies the rule. How can I make it so that the file must exist in ALL subrepos?The text was updated successfully, but these errors were encountered: