dockerhub-description/action.yml

29 lines
749 B
YAML
Raw Normal View History

2019-10-03 16:33:09 +09:00
name: 'Docker Hub Description'
author: 'Peter Evans'
description: 'An action to update a Docker Hub repository description from README.md'
2020-09-23 15:58:52 +09:00
inputs:
2020-09-25 11:13:16 +09:00
username:
2020-09-23 15:58:52 +09:00
description: Docker Hub username
required: true
2020-09-25 11:13:16 +09:00
password:
2020-09-23 15:58:52 +09:00
description: Docker Hub password
required: true
2020-09-25 11:13:16 +09:00
repository:
2020-09-25 14:42:31 +09:00
description: >
Docker Hub repository in the format `<namespace>/<name>`
Default: `github.repository`
2020-09-25 15:22:36 +09:00
short-description:
description: >
Docker Hub repository short description
Input exceeding 100 characters will be truncated
2020-09-23 15:58:52 +09:00
readme-filepath:
2020-09-25 14:42:31 +09:00
description: >
Path to the repository readme
Default: `./README.md`
2019-10-03 16:33:09 +09:00
runs:
2020-09-23 15:58:52 +09:00
using: 'node12'
main: 'dist/index.js'
2019-10-03 16:33:09 +09:00
branding:
icon: 'upload'
2019-10-03 16:33:09 +09:00
color: 'blue'