-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: shubham_G <[email protected]>
- Loading branch information
1 parent
1ce89cb
commit 98d9d9d
Showing
1 changed file
with
53 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
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: false | ||
default: 'false' | ||
type: string | ||
DRAFT: | ||
description: 'Draft? True/False' | ||
required: false | ||
default: 'false' | ||
type: string | ||
ONLY_TAG: | ||
description: "Only Tag" | ||
required: false | ||
type: string | ||
default: 'false' | ||
BRANCH: | ||
description: 'Branch name' | ||
required: true | ||
type: string | ||
LATEST: | ||
description: 'Latest release' | ||
required: false | ||
type: string | ||
default: 'true' | ||
|
||
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 }} | ||
ONLY_TAG: ${{ inputs.ONLY_TAG }} | ||
BRANCH: ${{ inputs.BRANCH }} | ||
LATEST: ${{ inputs.LATEST }} | ||
secrets: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
TOKEN: ${{ secrets.ACTION_PAT }} |