-
Notifications
You must be signed in to change notification settings - Fork 58
feat: Add support for new ignoreMissing and ignoreOptions options #63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,6 +11,12 @@ inputs: | |
| finalize: | ||
| description: 'When false, omit marking the release as finalized and released.' | ||
| default: true | ||
| ignore_missing: | ||
| description: 'When the flag is set and the previous release commit was not found in the repository, will create a release with the default commits count instead of failing the command.' | ||
| required: false | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't, as we do that here https://github.com/getsentry/action-release/pull/63/files#diff-4fab5baaca5c14d2de62d8d2fceef376ddddcc8e9509d86cfa5643f51b89ce3dR15-R16 |
||
| ignore_empty: | ||
| description: 'When the flag is set, command will not fail and just exit silently if no new commits for a given release have been found.' | ||
| required: false | ||
| started_at: | ||
| description: 'Unix timestamp of the release start date. Omit for current time.' | ||
| required: false | ||
|
|
@@ -29,6 +35,9 @@ inputs: | |
| url_prefix: | ||
| description: 'Adds a prefix to source map urls after stripping them.' | ||
| required: false | ||
| strip_common_prefix: | ||
| description: 'Will remove a common prefix from uploaded filenames. Useful for removing a path that is build-machine-specific.' | ||
| required: false | ||
| runs: | ||
| using: 'docker' | ||
| image: 'docker://sentryintegrations/sentry-github-action-release:latest' | ||
|
|
||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feels bad to duplicate this between the README and
action.yml, but I realized that there are slight differences between the readme and this (for ex,versiondefaults to{{github.sha}}, but there is not default field in yml for that key).