mirror of
https://github.com/tauri-apps/tauri-vscode.git
synced 2026-01-31 00:35:18 +01:00
54 lines
1.7 KiB
YAML
54 lines
1.7 KiB
YAML
# 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 }} |