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
Since version 0.25.0, the --all option of the project list command it not working as expected.
0.25.0
--all
project list
# Expected result, working with 0.24.0 ❯ LAB_CORE_HOST="https://gitlab.com" LAB_CORE_TOKEN=${GITLAB_TOKEN} ./lab-0.24.0 project list --member --all | wc -l 280 # Current result ❯ LAB_CORE_HOST="https://gitlab.com" LAB_CORE_TOKEN=${GITLAB_TOKEN} ./lab-0.25.0 project list --member --all | wc -l 100
The text was updated successfully, but these errors were encountered:
--number and -n has the same problem:
--number
-n
lab project list -ma --number "20" | wc -l 20
lab project list -ma --number "20" | wc -l 100
lab project list -ma --number "200" | wc -l 200
lab project list -ma --number "200" | wc -l 100
lab project list -m -a -n 20 | wc -l 20
lab project list -m -a -n 20 | wc -l 100
lab project list -m -a -n 200 | wc -l 200
lab project list -m -a -n 200 | wc -l 100
Sorry, something went wrong.
No branches or pull requests
Since version
0.25.0
, the--all
option of theproject list
command it not working as expected.The text was updated successfully, but these errors were encountered: