From df7c32f3e0c7ec927f00cc2ac39543ab91bb811d Mon Sep 17 00:00:00 2001 From: Erik Godding Boye Date: Mon, 11 Dec 2023 10:17:01 +0100 Subject: [PATCH] feat: add manifest-file input to release-please workflow (#51) --- .github/workflows/release-please.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index e6312c8..a6e8799 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -6,12 +6,18 @@ on: release-type: type: string default: simple + manifest-file: + type: string + description: path to the release-please versions manifest + default: .release-please-manifest.json bump-minor-pre-major: type: boolean default: true + deprecationMessage: should be specified in manifest-file extra-files: type: string description: add extra-files to bump using the release-please generic updater + deprecationMessage: should be specified in manifest-file secrets: STATNETT_BOT_APP_ID: required: true @@ -59,5 +65,6 @@ jobs: with: bump-minor-pre-major: ${{ inputs.bump-minor-pre-major }} extra-files: ${{ inputs.extra-files }} + manifest-file: ${{ inputs.manifest-file }} release-type: ${{ inputs.release-type }} token: ${{ steps.token.outputs.token }}