-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
21 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
name: Actions Ecosystem Action Release Label | ||
name: Release Label Action | ||
description: Output semver update level from a label. | ||
author: Actions Ecosystem | ||
author: Michael Goodness | ||
branding: | ||
icon: paperclip | ||
color: blue | ||
inputs: | ||
label_prefix: | ||
description: A prefix for labels that indicate semver level ({major, minor, patch}). | ||
required: false | ||
default: "release/" | ||
labels: | ||
description: The list of labels for the pull request. Separated with line breaks if there're multiple labels. Required for push events, not for pull_request events. | ||
description: The list of labels for the pull request. Separated with line breaks if there are multiple labels. Required for push events; not for pull_request events. | ||
required: false | ||
outputs: | ||
level: | ||
description: A semver update level ({major, minor, patch}). | ||
value: ${{ steps.release-label.outputs.level }} | ||
runs: | ||
using: docker | ||
image: Dockerfile | ||
branding: | ||
icon: paperclip | ||
color: blue | ||
using: composite | ||
steps: | ||
- id: get-release-label | ||
run: get-release-label.sh | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters