mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-24 00:43:51 +08:00
e166d475e7
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.1...9bb56186c3b09b4f86b1c65136769dd318469633) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
name: Update release version.
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
|
|
jobs:
|
|
update-version:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # 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
|
|
with:
|
|
pattern: '${{ github.repository }}@'
|
|
only_major: true
|
|
paths: |
|
|
README.md
|
|
- name: Run git-cliff
|
|
uses: tj-actions/git-cliff@v1
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v6
|
|
with:
|
|
base: "main"
|
|
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 }})"
|
|
token: ${{ secrets.PAT_TOKEN }}
|