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

36 lines
1.3 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@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
with:
fetch-depth: 0
- name: Run release-tagger
uses: tj-actions/release-tagger@v4
- name: Sync release version.
uses: tj-actions/sync-release-version@v13
id: sync-release-version
2021-02-08 09:15:29 +08:00
with:
pattern: '${{ github.repository }}@'
only_major: true
2021-02-08 09:15:29 +08:00
paths: |
README.md
- name: Run git-cliff
uses: tj-actions/git-cliff@v1
2021-02-08 09:15:29 +08:00
- name: Create Pull Request
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"
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 }}