From f092a452c6ff26cd5cead0c615305fc386292793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Hern=C3=A1ndez?= Date: Thu, 6 Feb 2020 19:22:07 +0100 Subject: [PATCH] Add possibility to alter the target repository --- README.md | 1 + action.yml | 2 ++ dist/index.js | 2 ++ dist/src/create_pull_request.py | 3 ++- index.js | 2 ++ src/create_pull_request.py | 3 ++- 6 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6903d72..9a18ba2 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ See [this issue](https://github.com/peter-evans/create-pull-request/issues/48) f | Name | Description | Default | | --- | --- | --- | | `token` | `GITHUB_TOKEN` or a `repo` scoped [PAT](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line). | | +| `repository` | The repository where the pull request will be created. | `$GITHUB_REPOSITORY` | | `path` | Relative path under `$GITHUB_WORKSPACE` to the repository. | `$GITHUB_WORKSPACE` | | `commit-message` | The message to use when committing changes. | `[create-pull-request] automated change` | | `committer` | The committer name and email address in the format `Display Name `. | Defaults to the GitHub Actions bot user. See [Committer and author](#committer-and-author) for details. | diff --git a/action.yml b/action.yml index 00f233d..8115485 100644 --- a/action.yml +++ b/action.yml @@ -6,6 +6,8 @@ inputs: required: true path: description: 'Relative path under $GITHUB_WORKSPACE to the repository.' + repository: + description: 'The repository where the pull request will be created' commit-message: description: 'The message to use when committing changes.' committer: diff --git a/dist/index.js b/dist/index.js index 600f8d0..5d6c52a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1027,6 +1027,7 @@ async function run() { const inputs = { token: core.getInput("token"), path: core.getInput("path"), + repository: core.getInput("repository"), commitMessage: core.getInput("commit-message"), committer: core.getInput("committer"), author: core.getInput("author"), @@ -1047,6 +1048,7 @@ async function run() { // Set environment variables from inputs. if (inputs.token) process.env.GITHUB_TOKEN = inputs.token; + if (inputs.repository) process.env.CPR_REPOSITORY = inputs.repository; if (inputs.path) process.env.CPR_PATH = inputs.path; if (inputs.commitMessage) process.env.CPR_COMMIT_MESSAGE = inputs.commitMessage; if (inputs.committer) process.env.CPR_COMMITTER = inputs.committer; diff --git a/dist/src/create_pull_request.py b/dist/src/create_pull_request.py index 8a83a7e..ff3fbdd 100755 --- a/dist/src/create_pull_request.py +++ b/dist/src/create_pull_request.py @@ -22,6 +22,7 @@ DEFAULT_BODY = ( + "[create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action" ) DEFAULT_BRANCH = "create-pull-request/patch" +DEFAULT_REPOSITORY = os.environ["GITHUB_REPOSITORY"] def get_git_config_value(repo, name): @@ -94,7 +95,7 @@ def set_committer_author(repo, committer, author): # Get required environment variables github_token = os.environ["GITHUB_TOKEN"] -github_repository = os.environ["GITHUB_REPOSITORY"] +github_repository = os.getenv("CPR_REPOSITORY", DEFAULT_REPOSITORY) # Get environment variables with defaults path = os.getenv("CPR_PATH", os.getcwd()) branch = os.getenv("CPR_BRANCH", DEFAULT_BRANCH) diff --git a/index.js b/index.js index 3a331f4..6cb7714 100644 --- a/index.js +++ b/index.js @@ -25,6 +25,7 @@ async function run() { const inputs = { token: core.getInput("token"), path: core.getInput("path"), + repository: core.getInput("repository"), commitMessage: core.getInput("commit-message"), committer: core.getInput("committer"), author: core.getInput("author"), @@ -45,6 +46,7 @@ async function run() { // Set environment variables from inputs. if (inputs.token) process.env.GITHUB_TOKEN = inputs.token; + if (inputs.repository) process.env.CPR_REPOSITORY = inputs.repository; if (inputs.path) process.env.CPR_PATH = inputs.path; if (inputs.commitMessage) process.env.CPR_COMMIT_MESSAGE = inputs.commitMessage; if (inputs.committer) process.env.CPR_COMMITTER = inputs.committer; diff --git a/src/create_pull_request.py b/src/create_pull_request.py index 8a83a7e..ff3fbdd 100755 --- a/src/create_pull_request.py +++ b/src/create_pull_request.py @@ -22,6 +22,7 @@ DEFAULT_BODY = ( + "[create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action" ) DEFAULT_BRANCH = "create-pull-request/patch" +DEFAULT_REPOSITORY = os.environ["GITHUB_REPOSITORY"] def get_git_config_value(repo, name): @@ -94,7 +95,7 @@ def set_committer_author(repo, committer, author): # Get required environment variables github_token = os.environ["GITHUB_TOKEN"] -github_repository = os.environ["GITHUB_REPOSITORY"] +github_repository = os.getenv("CPR_REPOSITORY", DEFAULT_REPOSITORY) # Get environment variables with defaults path = os.getenv("CPR_PATH", os.getcwd()) branch = os.getenv("CPR_BRANCH", DEFAULT_BRANCH)