forked from eclipse-iceoryx/iceoryx
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (40 loc) · 1.32 KB
/
changelog.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
# This is a workflow that is manually triggered to generate a changelog based on given git tags and branch
name: Generate Changelog
on:
workflow_dispatch:
inputs:
BranchName:
description: 'Branch name to generate changelog'
required: true
UntilTag:
description: 'Until tag v[major].[minor].[patch].[dev]'
required: true
FutureRelease:
description: 'Future release version v[major].[minor].[patch].[dev]'
required: true
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
ref: ${{ github.event.inputs.BranchName }}
# Generate changelog
- name: Generate Changelog using github-changelog-generator
uses: heinrichreimer/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
project: iceoryx
user: eclipse-iceoryx
releaseBranch: ${{ github.event.inputs.BranchName }}
futureRelease: v${{ github.event.inputs.FutureRelease }}
dueTag: ${{ github.event.inputs.UntilTag }}
pullRequests: False
author: False
issues: True
issuesWoLabels: True
stripHeaders: True
stripGeneratorNotice: True