-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
30 lines (30 loc) · 922 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
name: 'Create Release PR '
description: 'Creates a new pull request for releasing a version'
inputs:
repo_owner:
description: 'The owner of the repository'
required: true
repo_name:
description: 'The name of the repository'
required: true
base_branch:
description: 'The base branch to create the pull request against'
required: true
target_branch:
description: 'The target branch for the pull request'
required: true
github_token:
description: 'GitHub token with repo access'
required: true
runs:
using: 'docker'
image: 'docker://matesousa/create-release:latest'
env:
INPUT_REPO_OWNER: ${{ inputs.repo_owner }}
INPUT_REPO_NAME: ${{ inputs.repo_name }}
INPUT_BASE_BRANCH: ${{ inputs.base_branch }}
INPUT_TARGET_BRANCH: ${{ inputs.target_branch }}
INPUT_GITHUB_TOKEN: ${{ inputs.github_token }}
branding:
icon: 'git-pull-request'
color: 'blue'