Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @dobladov @gotbahn @nitzanashi
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.1.0
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,32 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)

## [3.0.1] - 25.07.2025

## Fixed
- [FE-1483](https://zattoo2.atlassian.net/browse/FE-1483) Fix crash when PR description is empty

## [3.0.0] - 10.05.2023

### Infrastructure
- Upgrade to node `20`
- Updated dependencies
- Added typescript check
- Added jest types
- Replaced `@zeit/ncc` for `@vercel/ncc`

## [2.0.0] - 02.09.2022

## Added
- Unique name for each output entity
- Option to position content on top of the pull-request description

## [1.0.1] - 23.08.2022

## Fixed
- [WEBCORE-121](https://zattoo2.atlassian.net/browse/WEBCORE-121) Fix i18n output in GitHub PR description

## [1.0.0] - 18.11.2020

### Added
Initial Functionality
- Initial Functionality
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ Required. GitHub token
String with folders containing md files separated by commas (Supports glob pattern)
Example : 'projects/app/stats/, projects/embed/errors/'

### `name`

`string`

Required. Name to identify the output entity

### `top`

`string - boolean like`

Optional. set to `true` to position content at the top of the pull requests description


## Usage Example

````yaml
Expand Down
9 changes: 8 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,15 @@ inputs:
sources:
description: 'String with folders containing md files separated by commas (Supports glob pattern)'
required: true
name:
description: 'Unique name for the specific output job'
required: true
top:
required: false
description: 'indicates if output should be on top of the description'
default: 'false'
runs:
using: 'node12'
using: 'node20'
main: 'dist/index.js'
branding:
icon: edit-2
Expand Down
Loading