-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (46 loc) · 1.82 KB
/
draft-new-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: "Draft new release"
on:
workflow_dispatch:
inputs:
version:
description: "The version you want to release"
required: true
target_branch:
description: "The target branch for the new version"
default: "1.x"
required: true
jobs:
draft-new-release:
name: Draft a new release
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.target_branch }}
token: ${{ secrets.PAT }}
- name: Update changelog
uses: thomaseizinger/[email protected]
with:
version: ${{ github.event.inputs.version }}
- run: git checkout -b release/${{ github.event.inputs.version }}
- uses: stefanzweifel/[email protected]
with:
branch: release/${{ github.event.inputs.version }}
commit_user_name: Markus Poerschke (Bot)
commit_user_email: [email protected]
commit_message: Release ${{ github.event.inputs.version }}
file_pattern: CHANGELOG.md
- name: Create pull request
uses: thomaseizinger/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
with:
head: release/${{ github.event.inputs.version }}
base: ${{ github.event.inputs.target_branch }}
title: Release version ${{ github.event.inputs.version }}
reviewers: ${{ github.actor }}
body: |
Hi @${{ github.actor }}!
This PR was created in response to a manual trigger of the release workflow here: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}.
I've updated the changelog: ${{ steps.make-commit.outputs.commit }}.
Merging this PR will create a GitHub release.