tauri/.github/workflows/pr-version-updates.yml
Jacob Bolda e130c3ca56
chore: pin covector action (#737)
* Update change-status-on-PR.yml

* Update pr-version-updates.yml
2020-07-03 12:16:33 -05:00

34 lines
1.1 KiB
YAML

name: pr-version-updates
on:
push:
branches:
- dev
jobs:
pr-to-master:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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.1.0
id: covector
with:
command: 'version'
- name: Create Pull Request With Versions Bumped
uses: tauri-apps/create-pull-request@v2.8.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: release/version-updates
title: Apply Version Updates From Current Changes
commit-message: "apply version updates"
labels: "version updates"
body: |
Merging this PR will update the versions on all packages with changes as specified in the `.changes` directory.
It will kick off the process to release and publish any packages with an incremented version number.