Create Crate Version Update PR #4
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
| # @file crate-version-update.yml | |
| # | |
| # A Github workflow that creates or updates a pull request to update the crate version numbers of local crates to match | |
| # the version specified in the current draft release tag. | |
| # | |
| # This workflow will only create a PR when triggered manually. However, it will run automatically after the "Update | |
| # Release Draft" workflow completes, to update the PR if it already exists. | |
| # | |
| # NOTE: This file is automatically synchronized from Patina DevOps. Update the original file there | |
| # instead of the file in this repo. | |
| # | |
| # - Patina DevOps Repo: https://github.com/OpenDevicePartnership/patina-devops | |
| # - File Sync Settings: https://github.com/OpenDevicePartnership/patina-devops/blob/main/.sync/Files.yml | |
| # | |
| ## | |
| # Copyright (c) Microsoft Corporation. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| ## | |
| name: Create Crate Version Update PR | |
| on: | |
| workflow_run: | |
| workflows: ["Update Release Draft"] | |
| types: ["completed"] | |
| workflow_dispatch: | |
| jobs: | |
| crate-version-update-pr: | |
| name: Run | |
| uses: OpenDevicePartnership/patina-devops/.github/workflows/CrateVersionUpdater.yml@v0.3.6 | |
| with: | |
| ignore-prefix: v | |
| create-pr: ${{ github.event_name == 'workflow_dispatch' }} | |
| secrets: inherit | |
| permissions: | |
| contents: write |