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: |
|
2023-03-22 20:38:48 +00:00
|
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
|
|
git config --local user.name "github-actions[bot]"
|
2023-03-22 20:26:24 +00:00
|
|
|
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:
|
2023-03-22 20:47:57 +00:00
|
|
|
tags: true
|
2023-03-22 20:26:24 +00:00
|
|
|
github_token: ${{ secrets.PAT_TOKEN }}
|
2023-03-22 20:47:57 +00:00
|
|
|
branch: sec
|
2023-03-22 20:26:24 +00:00
|
|
|
|
2021-03-05 02:36:52 +00:00
|
|
|
update-version:
|
|
|
|
runs-on: ubuntu-latest
|
2023-04-04 19:58:30 +00:00
|
|
|
needs: create-sec-tag
|
2021-03-05 02:36:52 +00:00
|
|
|
steps:
|
2022-09-20 02:06:31 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-04 14:50:20 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-09-20 02:06:31 +00:00
|
|
|
- name: Run release-tagger
|
2023-03-10 22:23:25 +00:00
|
|
|
uses: tj-actions/release-tagger@v3
|
2021-04-02 16:43:14 +00:00
|
|
|
- name: Sync release version.
|
2022-09-20 00:45:45 +00:00
|
|
|
uses: tj-actions/sync-release-version@v13
|
2021-03-05 02:36:52 +00:00
|
|
|
id: sync-release-version
|
|
|
|
with:
|
2021-04-02 16:43:14 +00:00
|
|
|
pattern: '${{ github.repository }}@'
|
2022-09-20 04:57:53 +00:00
|
|
|
only_major: true
|
2021-03-05 02:36:52 +00:00
|
|
|
paths: |
|
|
|
|
README.md
|
2023-04-04 19:07:27 +00:00
|
|
|
- name: Run git-cliff
|
|
|
|
uses: tj-actions/git-cliff@v1
|
2021-03-05 02:36:52 +00:00
|
|
|
- name: Create Pull Request
|
2023-03-15 05:35:46 +00:00
|
|
|
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 }}
|