forked from mosip/partner-management-services
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MOSIP-29256] updated reusable worklows (mosip#602)
* [MOSIP-29256] updated reusable worklows * [MOSIP-29256] updated reusable worklows * [MOSIP-29256] updated reusable worklows * [MOSIP-29256] updated reusable worklows * [MOSIP-29256] updated reusable worklows * [MOSIP-29256] updated reusable worklows Signed-off-by: GOKULRAJ136 <[email protected]>
- Loading branch information
1 parent
c17d2cb
commit 1ec1d06
Showing
3 changed files
with
61 additions
and
2 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
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 @@ | ||
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 }} |
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,33 @@ | ||
name: Tagging of repos | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
TAG: | ||
description: 'Tag to be published' | ||
required: true | ||
type: string | ||
BODY: | ||
description: 'Release body message' | ||
required: true | ||
default: 'Changes in this Release' | ||
type: string | ||
PRE_RELEASE: | ||
description: 'Pre-release? True/False' | ||
required: true | ||
default: False | ||
type: string | ||
DRAFT: | ||
description: 'Draft? True/False' | ||
required: false | ||
default: False | ||
type: string | ||
|
||
jobs: | ||
tag-branch: | ||
uses: mosip/kattu/.github/workflows/tag.yml@master | ||
with: | ||
TAG: ${{ inputs.TAG }} | ||
BODY: ${{ inputs.BODY }} | ||
PRE_RELEASE: ${{ inputs.PRE_RELEASE }} | ||
DRAFT: ${{ inputs.DRAFT }} |