dockerhub-description/action.yml

29 lines
774 B
YAML
Raw Normal View History

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