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