Skip to content

Commit

Permalink
Fix: Add action outputs to action manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolaifa committed Jan 2, 2024
1 parent cc61a07 commit 9b17057
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,33 @@ inputs:
description: 'if set to true, then do not try to open pull requests'
required: false
default: false
outputs:
releases_created:
description: '`true` if a root component release was created, `false` otherwise'
release_created:
description: 'Directly related to [**Create a release**](https://developer.github.com/v3/repos/releases/#response-4) API'
paths_released:
description: 'A JSON string of the array of paths that had releases created (`[]` if )'
prs_created:
description: '`true` if any pull request was created or updated'
pr:
description: 'A JSON string of the [PullRequest object](https://github.com/googleapis/release-please/blob/main/src/pull-request.ts#L15) (unset if no release created)'
prs:
description: 'A JSON string of the array of [PullRequest objects](https://github.com/googleapis/release-please/blob/main/src/pull-request.ts#L15) (unset if no release created)'
upload_url:
description: 'Directly related to [**Create a release**](https://developer.github.com/v3/repos/releases/#response-4) API'
html_url:
description: 'Directly related to [**Create a release**](https://developer.github.com/v3/repos/releases/#response-4) API'
tag_name:
description: 'Directly related to [**Create a release**](https://developer.github.com/v3/repos/releases/#response-4) API'
major:
description: 'Number representing major semver value'
minor:
description: 'Number representing minor semver value'
patch:
description: 'Number representing patch semver value'
sha:
description: 'SHA that a GitHub release was tagged at'
runs:
using: 'node20'
main: 'dist/index.js'

0 comments on commit 9b17057

Please sign in to comment.