mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-23 23:23:50 +08:00
ce1768fcb7
Bumps [tj-actions/sync-release-version](https://github.com/tj-actions/sync-release-version) from v8 to v8.5. - [Release notes](https://github.com/tj-actions/sync-release-version/releases) - [Changelog](https://github.com/tj-actions/sync-release-version/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/sync-release-version/compare/v8...c3648fd109a88e7fde67648288c2a55d1b8ece2c) Signed-off-by: dependabot[bot] <support@github.com>
34 lines
1.2 KiB
YAML
34 lines
1.2 KiB
YAML
name: Update release version.
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
|
|
jobs:
|
|
update-version:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Sync release version.
|
|
uses: tj-actions/sync-release-version@v8.5
|
|
id: sync-release-version
|
|
with:
|
|
pattern: '${{ github.repository }}@'
|
|
paths: |
|
|
README.md
|
|
- name: Generate CHANGELOG
|
|
uses: tj-actions/github-changelog-generator@v1.6
|
|
with:
|
|
output: 'HISTORY.md'
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v3
|
|
with:
|
|
base: "main"
|
|
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 }}
|