3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2024-12-17 23:44:46 +00:00
changed-files/.github/workflows/sync-release-version.yml

60 lines
1.9 KiB
YAML
Raw Normal View History

2021-03-05 02:36:52 +00:00
name: Update release version.
on:
release:
types: [published]
jobs:
2023-03-22 20:26:24 +00:00
create-sec-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: sec
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v6
- name: Generate new tag
id: generate-tag
run: |
git tag -a ${{ steps.branch-name.outputs.tag }}-sec -m "Security release for ${{ steps.branch-name.outputs.tag }}"
- name: Push tag
2023-03-22 20:30:26 +00:00
uses: ad-m/github-push-action@master
2023-03-22 20:26:24 +00:00
with:
args: --follow-tags
github_token: ${{ secrets.PAT_TOKEN }}
2021-03-05 02:36:52 +00:00
update-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run release-tagger
uses: tj-actions/release-tagger@v3
- name: Sync release version.
uses: tj-actions/sync-release-version@v13
2021-03-05 02:36:52 +00:00
id: sync-release-version
with:
pattern: '${{ github.repository }}@'
only_major: true
2021-03-05 02:36:52 +00:00
paths: |
README.md
2021-03-11 00:40:11 +00:00
- name: Generate CHANGELOG
uses: tj-actions/github-changelog-generator@v1.18
with:
output: 'HISTORY.md'
2021-03-05 02:36:52 +00:00
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4.2.4
2021-03-05 02:36:52 +00:00
with:
base: "main"
2022-12-05 05:29:11 +00:00
labels: "merge when passing"
2021-03-05 02:36:52 +00:00
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 }}