Release/pre-release Preparation. #1
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
name: Release/pre-release Preparation. | |
on: | |
workflow_dispatch: | |
inputs: | |
MESSAGE: | |
description: 'Triggered for release or pe-release' | |
required: false | |
default: 'Release Preparation' | |
RELEASE_TAG: | |
description: 'tag to update' | |
required: true | |
SNAPSHOT_TAG: | |
description: 'tag to be replaced' | |
required: true | |
BASE: | |
description: 'base branch for PR' | |
required: true | |
jobs: | |
maven-release-preparation: | |
uses: mosip/kattu/.github/workflows/release-changes.yml@master | |
with: | |
MESSAGE: ${{ inputs.MESSAGE }} | |
RELEASE_TAG: ${{ inputs.RELEASE_TAG }} | |
SNAPSHOT_TAG: ${{ inputs.SNAPSHOT_TAG }} | |
BASE: ${{ inputs.BASE }} | |
secrets: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | |
ACTION_PAT: ${{ secrets.ACTION_PAT }} |