Release – Phase 1 #106
This file contains hidden or 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 on the 15th day. | |
| - cron: 0 0 15 */3 * | |
| workflow_dispatch: null | |
| permissions: {} | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| # Fine-grained Personal Access Token (PAT) with the following permissions for microsoft/PR-Metrics: | |
| # - Read access to Metadata | |
| # - Read and Write access to Actions, Code (aka Contents), and Workflows | |
| token: ${{ secrets.RELEASE_CHECKOUT }} | |
| - name: Release – Phase 1 – Internal | |
| uses: ./.github/actions/release-phase-1-internal | |
| with: | |
| major: 1 | |
| minor: 7 | |
| patch: 8 | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| release-pr-create-token: ${{ secrets.RELEASE_PR_CREATE }} |