Add way to define a long string workflow_dispatch input #12882
Replies: 13 comments 5 replies
-
This is good feedback @gabrielmoncea - I'll talk with the team about it and make sure that it is on the backlog. |
Beta Was this translation helpful? Give feedback.
-
any updates on this? |
Beta Was this translation helpful? Give feedback.
-
+1 |
Beta Was this translation helpful? Give feedback.
-
Currently, our workaround is to send run: |
rm -rf artifacts
mkdir artifacts
echo -e "$CHANGES_LOG" >> artifacts/changes_log.txt
echo -e "$INTERNAL_NOTES" >> artifacts/internal_notes.txt
echo "Changes log:"
cat artifacts/changes_log.txt
echo ""
echo "Internal notes:"
cat artifacts/internal_notes.txt
echo "" You can use your text editor to prepare the notes, then replace the newline character with |
Beta Was this translation helpful? Give feedback.
-
Hello @ethomson. We are having a use case that requires a multiline string as input. Any updates on this ? |
Beta Was this translation helpful? Give feedback.
-
Would love an update here as well. We're looking to add a changelog field on the fly for workflow runs and a single-line string is not good enough for that. |
Beta Was this translation helpful? Give feedback.
-
any update on this? It would be incredibly helpful |
Beta Was this translation helpful? Give feedback.
-
+1 here as well. We have a similar need for multi line release notes/comments |
Beta Was this translation helpful? Give feedback.
-
+1. Example: sql script. |
Beta Was this translation helpful? Give feedback.
-
+1 the main reason I'm not using workflows for creating my releases is the lack of a multi-line textarea. It makes adding changelogs/release notes an annoyance. Sure, formatting a single line string of text is managable, but it is an unnecessary step, so I may as well manually create them myself |
Beta Was this translation helpful? Give feedback.
-
Sorry for Actions Product being quiet here, I will add this to our papercuts backlog that we are working against over the next 12 months. I cannot commit we will get to it :) but know that we are still aware (it has not been forgotten). |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
I'm trying to add new lines to the string input but the input box is unusable.
It would be nice to also add the option of
input
ortextarea
where the user can increase the height of the box and pressingEnter
would add a new line in the fieldBeta Was this translation helpful? Give feedback.
All reactions