Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Move
auto-sizes
to plugins folder #972Move
auto-sizes
to plugins folder #972Changes from 39 commits
aa2437d
c366c91
2ebdda4
c59f9f9
5ab7268
177b2e9
c55b3e6
7c3d1d1
7df015d
643d78b
b0bad91
16fda54
dbe1a99
cef64a3
8a40b2c
43b630a
54ca2e6
218a69d
7c92bc0
4d18663
2b9693f
8c04816
f47b1f8
c75b3dc
ecd9d21
500fb91
4c21e8f
161a738
d10052f
23bcfc2
edba918
45a8b57
2daf975
88040f2
14c4776
87f3a04
852775d
bc2884f
4b0974e
8cfded4
7f3b13b
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Question: Why not use ternary expression here? Is it allowed?
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 was added as part of #544. If we need to update this, then we also have to update similar settings for other workflows (php-test.yml and php-test-standalone-plugins.yml).
Shall we open a follow-up PR to make these changes?
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.
Follow-up PR is fine. Just seems hard to read right now.
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.
@westonruter, GitHub workflow does not allow
${{ x ? 'ifTrue' : 'ifFalse' }}
ternary operator. Instead, it uses${{ x && 'ifTrue' || 'ifFalse' }}
. Therefore, we don't need to open a follow-up PR for this work.This file was deleted.