Files
dockerhub-description/action.yml
Peter Evans 432a30c9e0
Some checks failed
Publish Docker Image / publish (push) Has been cancelled
fix: revert fix enable-url-completion input (#310)
2025-04-03 08:46:49 +01:00

35 lines
1005 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`
enable-url-completion:
description: >
Enables completion of relative URLs to absolute ones
Default: `false`
image-extensions:
description: >
File extensions that will be treated as images
Default: `bmp,gif,jpg,jpeg,png,svg,webp`
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'upload'
color: 'blue'