-
Notifications
You must be signed in to change notification settings - Fork 26
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
fix: fix github action to check untracked files #19
Conversation
440bc9f
to
83f8aaa
Compare
83f8aaa
to
f86480c
Compare
a88d499
to
e0aa307
Compare
e0aa307
to
ef4f65a
Compare
ef4f65a
to
0f46f63
Compare
eba9545
to
111c1c9
Compare
111c1c9
to
0402fcd
Compare
@zyy17 After refactoring, I've tried it twice, one with wrong generated files, the other with right ones. And the github actions successfully checked them: the former failed and the latter succeed. PTAL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
I hereby agree to the terms of the GreptimeDB CLA
What's changed and what's your intention?
Fix github action to check untracked files.
The
git diff --exit-code
cannot found difference of those untracked files. So I usedgit status
instead.