mirror of
https://github.com/peter-evans/dockerhub-description.git
synced 2024-11-22 03:59:34 +01:00
26 lines
740 B
YAML
26 lines
740 B
YAML
name: 'Docker Hub Description'
|
|
author: 'Peter Evans'
|
|
description: 'An action to update a Docker Hub repository description from README.md'
|
|
inputs:
|
|
username:
|
|
description: Docker Hub username
|
|
required: true
|
|
password:
|
|
description: Docker Hub password or Personal Access Token with read/write/delete scope
|
|
required: true
|
|
repository:
|
|
description: >
|
|
Docker Hub repository in the format `<namespace>/<name>`
|
|
Default: `github.repository`
|
|
short-description:
|
|
description: Docker Hub repository short description
|
|
readme-filepath:
|
|
description: >
|
|
Path to the repository readme
|
|
Default: `./README.md`
|
|
runs:
|
|
using: 'node16'
|
|
main: 'dist/index.js'
|
|
branding:
|
|
icon: 'upload'
|
|
color: 'blue'
|