Add 'password' input type for manual workflows #12764
Replies: 36 comments 3 replies
-
Appreciate the feedback @TaffarelJr - this is good feedback. There are some details that we'll definitely want to think through because - as you note - these are your secrets. 😁 But your use case makes sense. Thanks again for the feedback. |
Beta Was this translation helpful? Give feedback.
-
Has there been any updates for this? I am interested in this as well. |
Beta Was this translation helpful? Give feedback.
-
Hi @ethomson Any updates on Adding |
Beta Was this translation helpful? Give feedback.
-
I could be wrong, but I think it's more secure keeping some secrets on my offline password manager. That's why I would rather type passwords each time I need to manually trigger a workflow. |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
This is just what I need, a password input type. |
Beta Was this translation helpful? Give feedback.
-
This is exactly what I am looking for |
Beta Was this translation helpful? Give feedback.
-
I would love that |
Beta Was this translation helpful? Give feedback.
-
Over a year... and nothing new? I do confirm that it is simply not possible to use Azure (non) secrets (at all) in certain cases. (e.g. echo from some base 64...) So please add another string type such as masked, password, secret, whatever you like, as long as it has a masking effect when you enter it. |
Beta Was this translation helpful? Give feedback.
-
While the comments might help, you might also want to upvote the author's post so it gets more attention. |
Beta Was this translation helpful? Give feedback.
-
bump. pretty awkard having to hide my laptop screen from those sitting around me when deploying a workflow. Not to mention a security risk if ever done in public |
Beta Was this translation helpful? Give feedback.
-
This would be a helpful feature. Bumping |
Beta Was this translation helpful? Give feedback.
-
Please for the love of god please I'm begging you please I'm on my hands and knees please |
Beta Was this translation helpful? Give feedback.
-
bump |
Beta Was this translation helpful? Give feedback.
-
bump! There are situations where the secrets can and should not be saved. |
Beta Was this translation helpful? Give feedback.
-
Sorry no one from GitHub has commented back on this one :) let me add this to the set of yaml papercuts we are looking at. I don't have a timeframe but it is still something we are aware of. Thank you for continuing to provide us feedback 🙇 |
Beta Was this translation helpful? Give feedback.
-
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
I really want this e.g. ## To avoid expression render ${{ }} and retrieve the value
export SPOTINST_TOKEN=$(jq -r '.inputs.SPOTINST_TOKEN' ${GITHUB_EVENT_PATH})
## Add mask to hide if necessary
echo "::add-mask::${SPOTINST_TOKEN}" Just read the input directly from the event file that is placed on each run. This way, we don't need to render the Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
Hi guys, I wrote a small ViolentMonkey script. It is activated via Shift after the page is loaded :).
|
Beta Was this translation helpful? Give feedback.
-
The input types for manual workflows are great so far:
string
choice
boolean
environment
But I could really use a
password
input type.I need to deploy infrastructure-as-code from my GitHub Action, and I need to be able to prompt for Admin credentials from whoever is running the workflow. I bet I could make it work with a plain
string
, but I have a feeling my password shouldn't be floating across the internet unprotected. At the very least, a masking effect would be nice to prevent the password from being seen on the screen.Beta Was this translation helpful? Give feedback.
All reactions