Skip to content

Commit

Permalink
feat: Add Release Manager Caller
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragdata committed Jul 27, 2024
1 parent 36cfe0f commit 71f0ce3
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/release-manager.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
####################################################################
# release-manager.yml
####################################################################
# Ragdata's Release Manager Caller Workflow
#
# File: release-manager.yml
# Version: 1.0
# Author: Ragdata
# Date: 27/07/2024
# License: MIT License
# Copyright: Copyright © 2024 Redeyed Technologies
####################################################################
name: Ragdata's Release Manager

on:
# Allows for manual triggering via the Actions tab
workflow_dispatch:
inputs:
version:
description: "Release version"
required: false
type: string
type:
description: "Bump Type (patch/minor/major)"
required: false
type: string

jobs:

call_reusable_workflow:
permissions:
contents: write
uses: ragdata/reusable-workflows/.github/workflows/release-manager.yml@master
with:
version: ${{ inputs.version }}
type: ${{ inputs.type }}
secrets:
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}

0 comments on commit 71f0ce3

Please sign in to comment.