From f9e35dc9e38d5c119dd9ce55b08bc469ed7ec524 Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Tue, 30 Jan 2024 21:43:38 +0100 Subject: [PATCH] Added newBranch feature options and added default excludeOptions in simple release github action --- .github/workflows/simple-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/simple-release.yml b/.github/workflows/simple-release.yml index 8b642e359..599c56c7d 100644 --- a/.github/workflows/simple-release.yml +++ b/.github/workflows/simple-release.yml @@ -19,6 +19,11 @@ on: type: string description: Separate the files or folders that you do not want to see in the release with a comma. required: false + default: 'node_modules,package.json,package-lock.json' + neededNewBranch: + type: string + description: Specify true or false if you want to create a new branch. + required: false jobs: simple-create-release: @@ -28,3 +33,4 @@ jobs: web: ${{ github.event.inputs.web }} versionNumber: ${{ github.event.inputs.versionNumber }} excludeOptions: ${{ github.event.inputs.excludeOptions }} + neededNewBranch: ${{ github.event.inputs.neededNewBranch }}