Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
Allow Automatic release notes in Releases
Browse files Browse the repository at this point in the history
  • Loading branch information
jyejare committed Mar 28, 2023
1 parent d68defd commit 93b1dfd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,15 @@ jobs:
## Supported Parameters

| Parameter | Description | Default |
| ----------------------- | ---------------------------------------------------------- | -------- |
| ----------------------- |------------------------------------------------------------|----------|
| `repo_token`\*\* | GitHub Action token, e.g. `"${{ secrets.GITHUB_TOKEN }}"`. | `null` |
| `draft` | Mark this release as a draft? | `false` |
| `prerelease` | Mark this release as a pre-release? | `true` |
| `automatic_release_tag` | Tag name to use for automatic releases, e.g `latest`. | `null` |
| `title` | Release title; defaults to the tag name if none specified. | Tag Name |
| `files` | Files to upload as part of the release assets. | `null` |
| `generate_release_notes`| Automaticaly generate release notes | `false` |


## Outputs

Expand Down
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ inputs:
files:
description: "Assets to upload to the release"
required: false
generate_release_notes:
description: "Whether to automatically generate the name and body for this release. If name is specified, the specified name will be used; otherwise, a name will be automatically generated"
required: : false

outputs:
automatic_releases_tag:
description: "The release tag this action just processed"
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

0 comments on commit 93b1dfd

Please sign in to comment.