From 4a3aaf409cce1ba6a1e372ae93c3998b40b0f468 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Mon, 26 Oct 2020 17:58:13 +0100 Subject: [PATCH] Update README --- README.md | 4 ++-- action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8062ad3..9a922cc 100644 --- a/README.md +++ b/README.md @@ -116,9 +116,9 @@ Following inputs can be used as `step.with` keys | `tag-sha` | Bool | Add git short SHA as Docker tag (default `false`) | | `tag-edge` | Bool | Enable edge branch tagging (default `false`) | | `tag-edge-branch` | String | Branch that will be tagged as edge (default `repo.default_branch`) | -| `tag-coerce-tag` | String | Coerces Git tag to semver if possible using [Handlebars template](https://handlebarsjs.com/guide/) | +| `tag-coerce-tag` | String | Coerces Git tag to semver if possible using [template](#coerces-git-tag) | | `tag-latest-match` | String | Set `latest` tag only if [matches with a pattern](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp) | -| `tag-schedule` | String | [Handlebars template](https://handlebarsjs.com/guide/) to apply to schedule tag (default `nightly`) | +| `tag-schedule` | String | [Template](#schedule-tag) to apply to schedule tag (default `nightly`) | | `sep-tags` | String | Separator to use for tags output (default `\n`) | | `sep-labels` | String | Separator to use for labels output (default `\n`) | diff --git a/action.yml b/action.yml index 75b98e8..e1a2352 100644 --- a/action.yml +++ b/action.yml @@ -22,13 +22,13 @@ inputs: description: 'Branch that will be tagged as edge (default repo.default_branch)' required: false tag-coerce-tag: - description: 'Coerces Git tag to semver if possible using Handlebars template' + description: 'Coerces Git tag to semver if possible using template' required: false tag-latest-match: description: 'Set latest tag only if matches with a pattern' required: false tag-schedule: - description: 'Handlebars template to apply to schedule tag' + description: 'Template to apply to schedule tag' default: 'nightly' required: false sep-tags: