Skip to content

Commit

Permalink
chore: update dist build
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel committed Mar 26, 2022
1 parent 64eb43b commit 42c6420
Show file tree
Hide file tree
Showing 2 changed files with 269 additions and 269 deletions.
16 changes: 8 additions & 8 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2350,7 +2350,7 @@ function _objectWithoutProperties(source, excluded) {
return target;
}

const VERSION = "3.6.0";
const VERSION = "3.5.1";

const _excluded = ["authStrategy"];
class Octokit {
Expand Down Expand Up @@ -29752,10 +29752,10 @@ async function main () {
const repo = github.context.repo.repo

const bumpTypes = {
major: core.getInput('major-list').split(','),
minor: core.getInput('minor-list').split(','),
patch: core.getInput('patch-list').split(','),
patchAll: (core.getInput('patch-all') === true || core.getInput('patch-all') === 'true'),
major: core.getInput('majorList').split(',').map(p => p.trim()).filter(p => p),
minor: core.getInput('minorList').split(',').map(p => p.trim()).filter(p => p),
patch: core.getInput('patchList').split(',').map(p => p.trim()).filter(p => p),
patchAll: (core.getInput('patchAll') === true || core.getInput('patchAll') === 'true'),
}

// GET LATEST + PREVIOUS TAGS
Expand Down Expand Up @@ -29816,9 +29816,9 @@ async function main () {

// PARSE COMMITS

let majorChanges = []
let minorChanges = []
let patchChanges = []
const majorChanges = []
const minorChanges = []
const patchChanges = []
for (const commit of commits) {
try {
const cAst = cc.toConventionalChangelogFormat(cc.parser(commit.commit.message))
Expand Down
Loading

0 comments on commit 42c6420

Please sign in to comment.