Skip to content

Commit

Permalink
Update action inputs descriptions to describe the required regexp syn…
Browse files Browse the repository at this point in the history
…tax (#928)

Signed-off-by: Jack Baldry <[email protected]>
  • Loading branch information
jdbaldry authored Dec 16, 2024
1 parent 541fb6e commit 11ed16a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions publish-technical-documentation-release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ inputs:
type: boolean
release_branch_regexp:
description: |
A regular expression with capture groups for major, and minor versions.
For example, '^release-(0|[1-9]\d*)\.(0|[1-9]\d*)$'.
A regular expression using Extended Regular Expression syntax with capture groups for major, and minor versions.
For example, '^release-(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)$'.
For more information, refer to https://github.com/grafana/grafana-github-actions/blob/main/has-matching-release-tag/action.yaml#L28-L33.
required: true
release_branch_with_patch_regexp:
default: ""
description: |
A regular expression with capture groups for major, minor, and patch versions.
For example, '^release-(0|[1-9]\d*)\.(0|[1-9]\d*)$'.
A regular expression using Extended Regular Expression syntax with capture groups for major, minor, and patch versions.
For example, '^release-(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)$'.
For more information, refer to https://github.com/grafana/grafana-github-actions/blob/main/has-matching-release-tag/action.yaml#L34-L40.
required: false
release_tag_regexp:
description: |
A regular expression with capture groups for major, minor, and patch versions.
For example, '^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$'.
A regular expression using Extended Regular Expression syntax with capture groups for major, minor, and patch versions.
For example, '^v(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)$'.
For more information, refer to https://github.com/grafana/grafana-github-actions/blob/main/has-matching-release-tag/action.yaml#L22-L27.
required: true
source_directory:
Expand Down

0 comments on commit 11ed16a

Please sign in to comment.