-
Notifications
You must be signed in to change notification settings - Fork 16
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 #25: Add IFEQ
option to SET
command
#27
Conversation
hack/cmds/commands.json
Outdated
{ | ||
"type": "block", | ||
"arguments": [ | ||
{ | ||
"name": "ifeq", | ||
"type": "pure-token", | ||
"token": "IFEQ" | ||
}, | ||
{ | ||
"name": "comparison-value", | ||
"type": "string" | ||
} | ||
] | ||
} |
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.
Hi @px86, there is no need to use the block
type, just merge the current ifeq
and comparison-value
into one string
type argument.
Hi @px86, the DCO action failed. I think you need to use |
Hi @px86, you need to -s (sign off) for every commit. Your first commit is not signed off, or you can merge your two commits into one signed off commit. |
Signed-off-by: Pushkar Raj <[email protected]>
Signed-off-by: Pushkar Raj <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #27 +/- ##
==========================================
- Coverage 94.54% 94.54% -0.01%
==========================================
Files 95 95
Lines 39315 39351 +36
==========================================
+ Hits 37170 37204 +34
- Misses 1817 1818 +1
- Partials 328 329 +1 ☔ View full report in Codecov by Sentry. |
Thank you so much @px86! |
* fix #25: Add `IFEQ` option to `SET` command Signed-off-by: Pushkar Raj <[email protected]> * Removed `block` argument per PR comment Signed-off-by: Pushkar Raj <[email protected]> --------- Signed-off-by: Pushkar Raj <[email protected]> Signed-off-by: Rueian <[email protected]>
* fix #25: Add `IFEQ` option to `SET` command Signed-off-by: Pushkar Raj <[email protected]> * Removed `block` argument per PR comment Signed-off-by: Pushkar Raj <[email protected]> --------- Signed-off-by: Pushkar Raj <[email protected]> Signed-off-by: Rueian <[email protected]>
No description provided.