Create a Docker Hub access token using Docker Hub API
Required The username of the Docker Hub account to authenticate with
Required The password or personal access token (PAT) of the Docker Hub account to authenticate with
Required Label of the access token that will be created
Valid scopes: 'repo:admin', 'repo:write', 'repo:read', 'repo:public_read'. Specify multiple scopes by seperating them with ','. ex: repo:read,repo:write
UUID of created access token
Created access token
uses: actions/docker-hub-create-access-token-action@v1.0 with: username: "my-username" password: "my-password" token_label: "my-token-label" scopes: "repo:read,repo:write"