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
filter
Checking the log of an action which is using the following
- uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 filter: blob:none
The submodule checkout step indicates the filter is not applied
# Fetching the primary repo git -c protocol.version=2 fetch --prune --no-recurse-submodules --filter=blob:none ... # fetching / checking out submodules git -c protocol.version=2 submodule update --init --force
I was expecting to see the --filter=... also present in the submodule update step. Is there a reason this is not the case?
--filter=...
submodule update
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checking the log of an action which is using the following
The submodule checkout step indicates the filter is not applied
I was expecting to see the
--filter=...
also present in thesubmodule update
step. Is there a reason this is not the case?The text was updated successfully, but these errors were encountered: