Skip to content
New issue

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

Exclude all files in subdirs #76

Merged
merged 3 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions .github/workflows/integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ jobs:
resources/
tests/
export-excludes: >-
--exclude="bin" --exclude="bin/*"
--exclude="src" --exclude="src/*"
--exclude="resources" --exclude="resources/*"
--exclude="*/*"
exported-paths: >-
LICENSE
README.md
bin/
composer.json
package.json
resources/
src/
8 changes: 4 additions & 4 deletions .github/workflows/reusable-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ on: # yamllint disable-line rule:truthy
default: "src/ tests/"
required: false
export-excludes:
description: "List of the expected exported directories"
description: "List of excluded exported paths"
type: "string"
default: "--exclude='src' --exclude='src/*'"
default: "--exclude='*/*'"
required: false
exported-paths:
description: "List of the expected exported files"
description: "List of expected exported paths"
type: "string"
default: "LICENSE README.md composer.json"
default: "LICENSE README.md composer.json src/"
required: false

permissions: {} # yamllint disable-line rule:braces
Expand Down