Files
dockerhub-description/action.yml
Yuta Kasai 0505d8b048
Some checks failed
Publish Docker Image / publish (push) Has been cancelled
fix: enable-url-completion input treating the string "false" as true (#307)
* NO-ISSUE Add test

* NO-ISSUE Use core.getBooleanInput() to retrieve boolean input values

* NO-ISSUE npm run build

* NO-ISSUE Delete unused import
2025-03-31 11:22:50 +01:00

36 lines
1.0 KiB
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`
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'