mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-24 03:33:50 +08:00
37 lines
1.3 KiB
YAML
37 lines
1.3 KiB
YAML
name: Update release version.
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
|
|
jobs:
|
|
update-version:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Run release-tagger
|
|
uses: tj-actions/release-tagger@v2
|
|
- name: Sync release version.
|
|
uses: tj-actions/sync-release-version@v13
|
|
id: sync-release-version
|
|
with:
|
|
pattern: '${{ github.repository }}@'
|
|
only_major: true
|
|
paths: |
|
|
README.md
|
|
- name: Generate CHANGELOG
|
|
uses: tj-actions/github-changelog-generator@v1.15
|
|
with:
|
|
output: 'HISTORY.md'
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v4.1.3
|
|
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 }}
|