This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.yaml
39 lines (39 loc) · 1.59 KB
/
plugin.yaml
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
image: codefresh/github-pr-plugin
tag: master
version: 0.2.0
description: Operates on GitHub pull requests
keywords:
- docker
- github
- pull-request
categories:
- Git
- Code-review
sources:
- https://github.com/codefresh-io/github-pr-plugin
maintainers: # (optional)
- name: Nick Sakovich
email: [email protected]
- name: Yaroslav Drachenko
email: [email protected]
icon: https://raw.githubusercontent.com/codefresh-plugins/cfstep-github-release/master/icon.jpg
envs:
- name: GITHUB_TOKEN
type: required
description: Token for access to GitHub
- name: GITHUB_REPO_OWNER
type: required
description: Name of repo owner
- name: GITHUB_REPO_NAME
type: required
description: Name of repo
- name: GITHUB_PR_NUMBER
description: The number of updated pull request. Required for open/close/update operations
- name: GITHUB_PR_OPERATION
description: Operation on pull request. Options - create, update, open, close. Default - create.
- name: HEAD
description: The name of the branch where your changes are implemented. For cross-repository pull requests in the same network, namespace head with a user like this - username:branch. Required for 'create' operation.
- name: BASE
description: The name of the branch you want the changes pulled into. This should be an existing branch on the current repository. You cannot submit a pull request to one repository that requests a merge to a base of another repository. Required for 'create' operation.
- name: TITLE
description: The title of the pull request. Required for 'create' operation.