chore(deps): update dependency typescript to v5.6.2 (#272) #92
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 2020-2022 Tauri Programme within The Commons Conservancy | |
# SPDX-License-Identifier: Apache-2.0 | |
# SPDX-License-Identifier: MIT | |
name: covector version | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
version-or-publish: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write # required for workflow_dispatch | |
contents: write # required to create new releases | |
pull-requests: write # required to open version update pr | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: git config | |
run: | | |
git config --global user.name "${{ github.event.pusher.name }}" | |
git config --global user.email "${{ github.event.pusher.email }}" | |
- name: covector version | |
uses: jbolda/covector/packages/action@covector-v0 | |
id: covector | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
command: 'version-or-publish' | |
createRelease: false | |
- name: Create Pull Request With Versions Bumped | |
if: steps.covector.outputs.commandRan == 'version' | |
uses: tauri-apps/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: covector/version-updates | |
title: Apply Version Updates From Current Changes | |
commit-message: 'apply version updates' | |
labels: 'version updates' | |
body: ${{ steps.covector.outputs.change }} | |
- name: Trigger publish.yml workflow | |
if: | | |
steps.covector.outputs.successfulPublish == 'true' && | |
contains(steps.covector.outputs.packagesPublished, 'tauri-vscode') | |
run: gh workflow run 1813401 -r dev | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |