Skip to content

Commit 81a0f07

Browse files
finished with githug pr plugin
1 parent 280d020 commit 81a0f07

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

incubator/github-pr/README.MD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Creates a new pull request in GitHub
55
## Environment Variables
66

77
- `GITHUB_TOKEN`: token for access to GitHub
8+
- `GITHUB_REPO_OWNER`: name of repo owner
9+
- `GITHUB_REPO_NAME`: name of repo
810
- `HEAD`: 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
911
- `BASE`: 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.
1012
- `TITLE`: The title of the pull request

incubator/github-pr/plugin.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
image: codefresh/github-pull-request
1+
image: codefresh/github-pr-plugin
22
tag: master
33
version: 0.1.0
44
description: Creates GitHub pull request
55
keywords:
66
- docker
77
- github
88
- pull-request
9-
home: https://github.com/codefresh-io/cf-github-pull-request
9+
home: https://github.com/codefresh-io/github-pr-plugin
1010
sources:
11-
- https://github.com/codefresh-io/cf-github-pull-request
11+
- https://github.com/codefresh-io/github-pr-plugin
1212
maintainers: # (optional)
1313
- name: Nick Sakovich
1414
@@ -17,6 +17,12 @@ envs:
1717
- name: GITHUB_TOKEN
1818
type: required
1919
description: Token for access to GitHub
20+
- name: GITHUB_REPO_OWNER
21+
type: required
22+
description: Name of repo owner
23+
- name: GITHUB_REPO_NAME
24+
type: required
25+
description: Name of repo
2026
- name: HEAD
2127
type: required
2228
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

0 commit comments

Comments
 (0)