2021-03-04 21:36:52 -05:00
|
|
|
name: Update release version.
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update-version:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-22 18:15:28 +00:00
|
|
|
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
|
2021-04-04 10:50:20 -04:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-09-19 20:06:31 -06:00
|
|
|
- name: Run release-tagger
|
2023-08-26 14:32:03 -06:00
|
|
|
uses: tj-actions/release-tagger@v4
|
2021-04-02 12:43:14 -04:00
|
|
|
- name: Sync release version.
|
2022-09-20 00:45:45 +00:00
|
|
|
uses: tj-actions/sync-release-version@v13
|
2021-03-04 21:36:52 -05:00
|
|
|
id: sync-release-version
|
|
|
|
with:
|
2021-04-02 12:43:14 -04:00
|
|
|
pattern: '${{ github.repository }}@'
|
2022-09-19 22:57:53 -06:00
|
|
|
only_major: true
|
2021-03-04 21:36:52 -05:00
|
|
|
paths: |
|
|
|
|
README.md
|
2023-09-04 15:29:37 -06:00
|
|
|
- name: Sync release package version.
|
|
|
|
uses: tj-actions/sync-release-version@v13
|
|
|
|
id: sync-release-package-version
|
|
|
|
with:
|
|
|
|
pattern: '"version": "'
|
2023-09-04 16:11:32 -06:00
|
|
|
strip_prefix: "v"
|
2023-09-04 15:29:37 -06:00
|
|
|
paths: |
|
|
|
|
package.json
|
2023-04-04 13:07:27 -06:00
|
|
|
- name: Run git-cliff
|
|
|
|
uses: tj-actions/git-cliff@v1
|
2021-03-04 21:36:52 -05:00
|
|
|
- name: Create Pull Request
|
2023-06-14 02:19:30 +00:00
|
|
|
uses: peter-evans/create-pull-request@v5.0.2
|
2021-03-04 21:36:52 -05:00
|
|
|
with:
|
|
|
|
base: "main"
|
2022-12-04 22:29:11 -07:00
|
|
|
labels: "merge when passing"
|
2021-03-04 21:36:52 -05:00
|
|
|
title: "Upgraded to ${{ steps.sync-release-version.outputs.new_version }}"
|
|
|
|
branch: "upgrade-to-${{ steps.sync-release-version.outputs.new_version }}"
|
|
|
|
commit-message: "Upgraded from ${{ steps.sync-release-version.outputs.old_version }} -> ${{ steps.sync-release-version.outputs.new_version }}"
|
|
|
|
body: "View [CHANGES](https://github.com/${{ github.repository }}/compare/${{ steps.sync-release-version.outputs.old_version }}...${{ steps.sync-release-version.outputs.new_version }})"
|
|
|
|
token: ${{ secrets.PAT_TOKEN }}
|