1

Below is the github actions workflow:

name: CALLERDB - AD

on:

  workflow_dispatch:

    inputs:

      DBLoginID:
        description: 'Enter the user id'
        required: true
        type: string

      my_password:
        description: 'Enter your password'
        required: true
        type: password

I need the user to input the password which should not be clear text / visible.

Instead, it should be masked as dots . or asterisks *

But, as you can see in the snapshot below the password is very much visible in clear text.

enter image description here

I do not wish to save the password in github secrets as there are 150 users who will run the workflow with their individual id-passwords and the password policy sets the password to expire every 2 months.

Can you please suggest what would be a a feasible solution here?

3

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.