branch-names/.github/workflows/sync-release-version.yml

34 lines
1.2 KiB
YAML
Raw Normal View History

2021-02-08 09:15:29 +08:00
name: Update release version.
on:
release:
types: [published]
jobs:
update-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
with:
fetch-depth: 0
- name: Sync release version.
uses: tj-actions/sync-release-version@v11
id: sync-release-version
2021-02-08 09:15:29 +08:00
with:
pattern: '${{ github.repository }}@'
2021-02-08 09:15:29 +08:00
paths: |
README.md
- name: Generate CHANGELOG
uses: tj-actions/github-changelog-generator@v1.13
with:
output: 'HISTORY.md'
2021-02-08 09:15:29 +08:00
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4.0.2
2021-02-08 09:15:29 +08:00
with:
2021-02-08 09:22:48 +08:00
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 }})"
2021-02-08 09:15:29 +08:00
token: ${{ secrets.PAT_TOKEN }}