-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from serucee/master
* Add option to pass tag from another action (Fixes #2 ). * Add option to pass release title.
- Loading branch information
Showing
5 changed files
with
111 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Intellij settings | ||
.idea |
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,18 +1,19 @@ | ||
{ | ||
"spellright.language": [ | ||
"en_GB" | ||
], | ||
"spellright.documentTypes": [ | ||
"markdown", | ||
"latex", | ||
"plaintext", | ||
"git-commit", | ||
"shellscript", | ||
"github-actions" | ||
], | ||
"spellright.parserByClass": { | ||
"github-actions": { | ||
"parser": "code" | ||
} | ||
} | ||
} | ||
"spellright.language": [ | ||
"en_GB" | ||
], | ||
"spellright.documentTypes": [ | ||
"markdown", | ||
"latex", | ||
"plaintext", | ||
"git-commit", | ||
"shellscript", | ||
"github-actions" | ||
], | ||
"spellright.parserByClass": { | ||
"github-actions": { | ||
"parser": "code" | ||
} | ||
}, | ||
"editor.formatOnSave": true | ||
} |
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,37 +1,45 @@ | ||
# action.yml | ||
name: 'GitHub Create Tag Release' | ||
description: 'Create a GitHub release from a pushed Tag.' | ||
name: "GitHub Create Tag Release" | ||
description: "Create a GitHub release from a pushed Tag." | ||
branding: | ||
icon: 'zap' | ||
color: 'white' | ||
icon: "zap" | ||
color: "white" | ||
inputs: | ||
# Version and release control inputs | ||
version_regex: | ||
description: 'Regular expression to verify that the version is in a correct format. Defaults to .* (accept everything).' | ||
default: '^.*$' | ||
description: "Regular expression to verify that the version is in a correct format. Defaults to .* (accept everything)." | ||
default: "^.*$" | ||
required: false | ||
prerelease_regex: | ||
description: 'Any version matching this regular expression will be marked as pre-release. Disabled by default.' | ||
default: '' | ||
description: "Any version matching this regular expression will be marked as pre-release. Disabled by default." | ||
default: "" | ||
required: false | ||
create_draft: | ||
description: 'Create the releases as draft (true|false [default: false]). Existing will not be updated from released to draft.' | ||
default: 'false' | ||
description: "Create the releases as draft (true|false [default: false]). Existing will not be updated from released to draft." | ||
default: "false" | ||
required: false | ||
update_existing: | ||
description: 'Controls whether an existing release should be updated with data from the latest push (true|false [default: false]).' | ||
default: 'false' | ||
description: "Controls whether an existing release should be updated with data from the latest push (true|false [default: false])." | ||
default: "false" | ||
required: false | ||
created_tag: | ||
description: "Allows to pass an already created tag, forces update_existing to true." | ||
default: "" | ||
required: false | ||
release_title: | ||
description: "Allows to pass a title for the release." | ||
default: "" | ||
required: false | ||
|
||
# Inputs related to the Changelog parsing | ||
changelog_file: | ||
description: 'Path of file that contains the Markdown formatted changelog.' | ||
default: 'CHANGELOG.md' | ||
description: "Path of file that contains the Markdown formatted changelog." | ||
default: "CHANGELOG.md" | ||
required: false | ||
changelog_heading: | ||
description: 'Heading level at which the tag headings exist.' | ||
default: 'h2' | ||
description: "Heading level at which the tag headings exist." | ||
default: "h2" | ||
required: false | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
using: "docker" | ||
image: "Dockerfile" |
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