-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
35 lines (32 loc) · 878 Bytes
/
action.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
name: 'Github Release Generator'
description: 'Generates a release based on commit messages and semantic versioning.'
branding:
icon: 'package'
color: 'blue'
inputs:
github_token:
description: 'GitHub token used for authentication'
required: true
add_description:
description: 'Additional custom description for the release'
required: false
default: ''
increment_type:
description: 'Type of version increment: major, minor, or patch'
required: false
default: 'patch'
github_username:
description: 'GitHub username'
required: true
repo_name:
description: 'Repository name'
required: true
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.github_token }}
- ${{ inputs.add_description }}
- ${{ inputs.increment_type }}
- ${{ inputs.github_username }}
- ${{ inputs.repo_name }}