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
trying to run this action on a PR produces an error: ++ grep '.py$' fatal: bad object ac7ed0108181239e44712926a3582ca96902bc68
The text was updated successfully, but these errors were encountered:
Are you using checkout@v2 as first step? It defaults to git fetch ... --depth=1 which caused just such an issue for me. Easily work-around though:
checkout@v2
git fetch ... --depth=1
steps: - uses: actions/checkout@v2 with: fetch-depth: 0
That makes it not do that, but fetch the entire history instead.
Sorry, something went wrong.
No branches or pull requests
trying to run this action on a PR produces an error:
++ grep '.py$'
fatal: bad object ac7ed0108181239e44712926a3582ca96902bc68
The text was updated successfully, but these errors were encountered: