-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(dev-cycle): release changelog generation (#25725)
Introducing a Github Action to generate, based on Github repo commits, a release candidate changelog. Refs: #25350
- Loading branch information
1 parent
d8325ad
commit 48e537d
Showing
32 changed files
with
132,026 additions
and
24 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,4 @@ | ||
dist/ | ||
lib/ | ||
node_modules/ | ||
src/@types/ |
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,17 @@ | ||
{ | ||
"plugins": ["@typescript-eslint", "github", "jest"], | ||
"extends": ["plugin:github/typescript"], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 9, | ||
"sourceType": "module", | ||
"project": "./tsconfig.json" | ||
}, | ||
"rules": { | ||
}, | ||
"env": { | ||
"node": true, | ||
"es6": true, | ||
"jest/globals": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# action.yml | ||
name: 'Changelog Report' | ||
description: 'Changelog report generator' | ||
author: 'victoralfaro-dotcms' | ||
inputs: | ||
project_root: | ||
description: 'Project root' | ||
required: true | ||
default: ${{ github.WORKSPACE }} | ||
issues_json: | ||
description: 'Issues json' | ||
required: true | ||
default: '[]' | ||
tag: | ||
description: 'Tag name' | ||
required: true | ||
format: | ||
description: 'Format to generate the report' | ||
required: false | ||
default: 'md' | ||
outputs: | ||
changelog_report_contents: | ||
description: 'Changelog report contents' | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' |
Oops, something went wrong.