Release – Phase 1 #40
Workflow file for this run
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
# Copyright (c) Microsoft Corporation. | |
# Licensed under the MIT License. | |
--- | |
name: Release – Phase 1 | |
on: | |
schedule: | |
# Run every quarter. | |
- cron: 0 0 1 */3 * | |
workflow_dispatch: | |
inputs: | |
major: | |
default: '1' | |
description: The major element of the version number | |
required: true | |
type: string | |
minor: | |
default: '5' | |
description: The minor element of the version number | |
required: true | |
type: string | |
patch: | |
default: '7' | |
description: The patch element of the version number | |
required: true | |
type: string | |
permissions: {} | |
jobs: | |
release: | |
uses: ./.github/workflows/release-phase-1-internal.yml | |
secrets: inherit | |
permissions: | |
pull-requests: write | |
with: | |
major: ${{ inputs.major || 1 }} | |
minor: ${{ inputs.minor || 5 }} | |
patch: ${{ inputs.patch || 7 }} | |
... |