-
Notifications
You must be signed in to change notification settings - Fork 0
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
[Broker] Remove possible error case for system topic name checking #2
base: master
Are you sure you want to change the base?
Conversation
00a3f84
to
8022f55
Compare
8022f55
to
b0590ae
Compare
@@ -58,8 +58,11 @@ jobs: | |||
- '*.md' | |||
- '**/*.md' | |||
|
|||
- name: print env | |||
run: echo ${{ steps.changes.outputs.all_count }} && echo ${{ steps.changes.outputs.docs_count }} && echo ${{ steps.changes.outputs.docs }} && echo ${{steps.changes.outputs.all_count > steps.changes.outputs.docs_count}} |
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.
This echo shows some of the values that are interpolated by GitHub. View them in the action's logs.
- name: Cache local Maven repository | ||
if: ${{ steps.changes.outputs.all_count > steps.changes.outputs.docs_count }} | ||
if: ${{ steps.changes.outputs.all_count }} > ${{ steps.changes.outputs.docs_count }} |
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.
Note that this test runs, but the others don't.
The pr had no activity for 30 days, mark with Stale label. |
No description provided.