-
Notifications
You must be signed in to change notification settings - Fork 81
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
Fixes annotation bug which used to err out on string value #379
Fixes annotation bug which used to err out on string value #379
Conversation
Sounds good! let's wait to have the pac cluster to come back up and test it. in the meantime any chance to update the documentation with the multiple format supported? you can maybe add a single task reference in the e2e template so we can test it too on e2e, for example : pipelinesascode.tekton.dev/task-2: "pylint" |
/retest |
Codecov Report
@@ Coverage Diff @@
## main #379 +/- ##
==========================================
- Coverage 70.79% 70.51% -0.28%
==========================================
Files 50 50
Lines 2568 2581 +13
==========================================
+ Hits 1818 1820 +2
- Misses 573 582 +9
- Partials 177 179 +2
Continue to review full report at Codecov.
|
f5c1a5c
to
8ea4292
Compare
/retest |
8ea4292
to
cc09157
Compare
cc09157
to
9452dfa
Compare
previoulsy, when the annotation are not array but a string : eg. pipelinesascode.tekton.dev/on-event: "pull_request" pac used to err out. This patch fixes that and now allows single string along with array of string. eg. ["foo", "bar"], ["foo"] or "foo" Signed-off-by: Shivam Mukhade <[email protected]>
9452dfa
to
913e03b
Compare
/lgtm |
previoulsy, when the annotation are not array but a string :
eg. pipelinesascode.tekton.dev/on-event: "pull_request"
pac used to err out.
This patch fixes that and now allows single string along
with array of string.
eg. ["foo", "bar"], ["foo"] or "foo"
Closes #374
Signed-off-by: Shivam Mukhade [email protected]