Skip to content

Commit

Permalink
Update tag.yml
Browse files Browse the repository at this point in the history
Signed-off-by: shubham_G <[email protected]>
  • Loading branch information
shubham17998 committed Nov 16, 2023
1 parent 61ff3df commit d4b0f0c
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,28 @@ on:
type: string
PRE_RELEASE:
description: 'Pre-release? True/False'
required: true
default: False
required: false
default: 'false'
type: string
DRAFT:
description: 'Draft? True/False'
required: false
default: 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:
Expand All @@ -30,4 +44,10 @@ jobs:
TAG: ${{ inputs.TAG }}
BODY: ${{ inputs.BODY }}
PRE_RELEASE: ${{ inputs.PRE_RELEASE }}
DRAFT: ${{ inputs.DRAFT }}
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 }}

0 comments on commit d4b0f0c

Please sign in to comment.