mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
* update readme with notes about character limits and designating bumps * edit PR template to note addition of a change file * add change file for #674 * add change file for #673 * add change file for #672 * add change file for #671 * add version action * set version command in config * add change file for #677 * add labels to PRs * Update .changes/tauri-info-crash.md Co-authored-by: Rajiv Shah <rajivshah1@icloud.com> * Update .changes/HttpRequestBuilder-implementation.md Co-authored-by: Rajiv Shah <rajivshah1@icloud.com> * Update kill-beforeDevProcess-on-shutdown.md * Update reflect-conf-changes.md Co-authored-by: Rajiv Shah <rajivshah1@icloud.com> Co-authored-by: Lucas Fernandes Nogueira <lucasfernandesnog@gmail.com>
33 lines
1.0 KiB
YAML
33 lines
1.0 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@master
|
|
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
|
|
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.
|