2021-02-08 09:15:29 +08:00
|
|
|
name: Update release version.
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update-version:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-10-18 20:21:23 +08:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
|
2021-04-04 22:50:20 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-09-20 10:06:31 +08:00
|
|
|
- name: Run release-tagger
|
2023-08-27 07:12:02 +08:00
|
|
|
uses: tj-actions/release-tagger@v4
|
2021-04-03 00:43:14 +08:00
|
|
|
- name: Sync release version.
|
2022-09-20 08:39:23 +08:00
|
|
|
uses: tj-actions/sync-release-version@v13
|
2021-04-03 00:43:14 +08:00
|
|
|
id: sync-release-version
|
2021-02-08 09:15:29 +08:00
|
|
|
with:
|
2021-04-03 00:43:14 +08:00
|
|
|
pattern: '${{ github.repository }}@'
|
2022-09-20 12:57:53 +08:00
|
|
|
only_major: true
|
2021-02-08 09:15:29 +08:00
|
|
|
paths: |
|
|
|
|
README.md
|
2023-04-02 04:56:44 +08:00
|
|
|
- name: Run git-cliff
|
|
|
|
uses: tj-actions/git-cliff@v1
|
2021-02-08 09:15:29 +08:00
|
|
|
- name: Create Pull Request
|
2024-01-31 20:13:40 +08:00
|
|
|
uses: peter-evans/create-pull-request@v6
|
2021-02-08 09:15:29 +08:00
|
|
|
with:
|
2021-02-08 09:22:48 +08:00
|
|
|
base: "main"
|
2022-12-05 13:45:03 +08:00
|
|
|
labels: "merge when passing"
|
2021-04-03 00:43:14 +08: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 }})"
|
2021-02-08 09:15:29 +08:00
|
|
|
token: ${{ secrets.PAT_TOKEN }}
|