Extract reusable GHA workflows #2
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: Promote Staged Milestone | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
buildName: | ||
description: 'The Artifactory Build Name' | ||
required: true | ||
type: string | ||
buildNumber: | ||
description: 'The Artifactory Build' | ||
required: true | ||
type: number | ||
jobs: | ||
promote_milestone: | ||
uses: .github/workflows/spring-artifactory-promote-milestone.yml | ||
with: | ||
buildName: ${{ inputs.buildName }} | ||
buildNumber: ${{ inputs.buildNumber }} | ||
secrets: inherit |