Compare commits
2 Commits
1.0.11
...
add/failur
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
416ba30b87 | ||
|
|
c761be135f |
@@ -93,7 +93,7 @@ Example workflows are provided in [examples](examples), and please contribute an
|
|||||||
examples that you might have to help other users! We will walk through a basic
|
examples that you might have to help other users! We will walk through a basic
|
||||||
example here for a niche case. Let's say that we are opening a pull request on the release event. This would mean
|
example here for a niche case. Let's say that we are opening a pull request on the release event. This would mean
|
||||||
that the payload's branch variable would be null. We would need to define `PULL_REQUEST_FROM`. How would
|
that the payload's branch variable would be null. We would need to define `PULL_REQUEST_FROM`. How would
|
||||||
we do that? We can [set environment variables](https://help.github.com/en/actions/reference/development-tools-for-github-actions#set-an-environment-variable-set-env) for next steps. Here is an example:
|
we do that? We can [set environment variables](https://github.com/actions/toolkit/blob/main/docs/commands.md#environment-files) for next steps. Here is an example:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: Pull Request on Branch Push
|
name: Pull Request on Branch Push
|
||||||
@@ -109,7 +109,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
# do custom parsing of your code / date to derive a branch from
|
# do custom parsing of your code / date to derive a branch from
|
||||||
PR_BRANCH_FROM=release-v$(cat VERSION)
|
PR_BRANCH_FROM=release-v$(cat VERSION)
|
||||||
::set-env name=PULL_REQUEST_FROM_BRANCH::${PR_BRANCH_FROM}
|
export "PULL_REQUEST_FROM_BRANCH=${PR_BRANCH_FROM}" >> $GITHUB_ENV
|
||||||
- name: pull-request-action
|
- name: pull-request-action
|
||||||
uses: vsoch/pull-request-action@1.0.6
|
uses: vsoch/pull-request-action@1.0.6
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ jobs:
|
|||||||
git push origin "${BRANCH_FROM}"
|
git push origin "${BRANCH_FROM}"
|
||||||
fi
|
fi
|
||||||
# Here is where we are setting the environment variable!
|
# Here is where we are setting the environment variable!
|
||||||
echo "::set-env name=PULL_REQUEST_FROM_BRANCH::${BRANCH_FROM}"
|
echo "PULL_REQUEST_FROM_BRANCH=${BRANCH_FROM}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Open Pull Request
|
- name: Open Pull Request
|
||||||
uses: vsoch/pull-request-action@1.0.6
|
uses: vsoch/pull-request-action@1.0.6
|
||||||
|
|||||||
55
examples/custom-body-example.yml
Normal file
55
examples/custom-body-example.yml
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
name: Hotfix Branch Pull Request
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- master
|
||||||
|
- production
|
||||||
|
|
||||||
|
# See https://github.com/vsoch/pull-request-action/issues/47#issuecomment-707109132
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
auto-pull-request:
|
||||||
|
name: PullRequestAction
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Generate branch name
|
||||||
|
uses: actions/github-script@v3
|
||||||
|
id: set-branch-name
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const capitalize = (name) => name.charAt(0).toUpperCase() + name.slice(1);
|
||||||
|
const emoji = context.payload.ref.startsWith("refs/heads/feature")
|
||||||
|
? "✨ "
|
||||||
|
: context.payload.ref.startsWith("refs/heads/hotfix")
|
||||||
|
? "🚑 "
|
||||||
|
: "";
|
||||||
|
return `${emoji}${capitalize(
|
||||||
|
context.payload.ref
|
||||||
|
.replace("refs/heads/", "")
|
||||||
|
.replace(/-/g, " ")
|
||||||
|
.replace("feature ", "")
|
||||||
|
.replace("hotfix ", "")
|
||||||
|
)}`;
|
||||||
|
result-encoding: string
|
||||||
|
- name: Set branch name
|
||||||
|
run: echo "PULL_REQUEST_TITLE=${{steps.set-branch-name.outputs.result}}" >> $GITHUB_ENV
|
||||||
|
- name: Generate PR body
|
||||||
|
uses: actions/github-script@v3
|
||||||
|
id: set-pr-body
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
return `I'm opening this pull request for this branch, pushed by @${
|
||||||
|
context.payload.head_commit.author.username
|
||||||
|
} with ${context.payload.commits.length} commit${
|
||||||
|
context.payload.commits.length === 1 ? "" : "s"
|
||||||
|
}.`;
|
||||||
|
result-encoding: string
|
||||||
|
- name: Set PR body
|
||||||
|
run: echo "PULL_REQUEST_BODY=${{steps.set-pr-body.outputs.result}}" >> $GITHUB_ENV
|
||||||
|
- name: pull-request-action
|
||||||
|
uses: vsoch/pull-request-action@1.0.10
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
BRANCH_PREFIX: "hotfix-"
|
||||||
|
PULL_REQUEST_BRANCH: "production"
|
||||||
|
PULL_REQUEST_REVIEWERS: "AnandChowdhary"
|
||||||
@@ -25,12 +25,19 @@ def check_events_json():
|
|||||||
return events
|
return events
|
||||||
|
|
||||||
|
|
||||||
def abort_if_fail(reason):
|
def abort_if_fail(response, reason):
|
||||||
"""If PASS_ON_ERROR, don't exit. Otherwise exit with an error and print the reason"""
|
"""If PASS_ON_ERROR, don't exit. Otherwise exit with an error and print the reason"""
|
||||||
|
message = "%s: %s: %s\n %s" % (
|
||||||
|
reason,
|
||||||
|
response.status_code,
|
||||||
|
response.reason,
|
||||||
|
response.json(),
|
||||||
|
)
|
||||||
|
|
||||||
if os.environ.get("PASS_ON_ERROR"):
|
if os.environ.get("PASS_ON_ERROR"):
|
||||||
print("Error, but PASS_ON_ERROR is set, continuing: %s" % reason)
|
print("Error, but PASS_ON_ERROR is set, continuing: %s" % message)
|
||||||
else:
|
else:
|
||||||
sys.exit(reason)
|
sys.exit(message)
|
||||||
|
|
||||||
|
|
||||||
def parse_into_list(values):
|
def parse_into_list(values):
|
||||||
@@ -41,6 +48,14 @@ def parse_into_list(values):
|
|||||||
return [x.strip() for x in values.split(" ")]
|
return [x.strip() for x in values.split(" ")]
|
||||||
|
|
||||||
|
|
||||||
|
def set_env(name, value):
|
||||||
|
"""helper function to echo a key/value pair to the environement file"""
|
||||||
|
environment_file_path = os.environ.get("GITHUB_ENV")
|
||||||
|
|
||||||
|
with open(environment_file_path, "a") as environment_file:
|
||||||
|
environment_file.write("%s=%s" % (name, value))
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Global Variables (we can't use GITHUB_ prefix)
|
# Global Variables (we can't use GITHUB_ prefix)
|
||||||
################################################################################
|
################################################################################
|
||||||
@@ -82,10 +97,7 @@ def create_pull_request(
|
|||||||
if response.status_code == 404:
|
if response.status_code == 404:
|
||||||
response = requests.get(PULLS_URL, params=params, headers=HEADERS)
|
response = requests.get(PULLS_URL, params=params, headers=HEADERS)
|
||||||
if response.status_code != 200:
|
if response.status_code != 200:
|
||||||
abort_if_fail(
|
abort_if_fail(response, "Unable to retrieve information about pull requests")
|
||||||
"Unable to retrieve information about pull requests: %s: %s"
|
|
||||||
% (response.status_code, response.reason)
|
|
||||||
)
|
|
||||||
|
|
||||||
response = response.json()
|
response = response.json()
|
||||||
|
|
||||||
@@ -119,14 +131,7 @@ def create_pull_request(
|
|||||||
print("Data for opening pull request: %s" % data)
|
print("Data for opening pull request: %s" % data)
|
||||||
response = requests.post(PULLS_URL, json=data, headers=HEADERS)
|
response = requests.post(PULLS_URL, json=data, headers=HEADERS)
|
||||||
if response.status_code != 201:
|
if response.status_code != 201:
|
||||||
abort_if_fail(
|
abort_if_fail(response, "Unable to create pull request")
|
||||||
"Unable to create pull request: %s: %s, %s"
|
|
||||||
% (
|
|
||||||
response.status_code,
|
|
||||||
response.reason,
|
|
||||||
response.json().get("message", ""),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
# Expected return codes are 0 for success
|
# Expected return codes are 0 for success
|
||||||
pull_request_return_code = (
|
pull_request_return_code = (
|
||||||
@@ -139,13 +144,13 @@ def create_pull_request(
|
|||||||
number = response.get("number")
|
number = response.get("number")
|
||||||
html_url = response.get("html_url")
|
html_url = response.get("html_url")
|
||||||
print("Number opened for PR is %s" % number)
|
print("Number opened for PR is %s" % number)
|
||||||
print("::set-env name=PULL_REQUEST_NUMBER::%s" % number)
|
set_env("PULL_REQUEST_NUMBER", number)
|
||||||
print("::set-output name=pull_request_number::%s" % number)
|
print("::set-output name=pull_request_number::%s" % number)
|
||||||
print("::set-env name=PULL_REQUEST_RETURN_CODE::%s" % pull_request_return_code)
|
set_env("PULL_REQUEST_RETURN_CODE", pull_request_return_code)
|
||||||
print(
|
print(
|
||||||
"::set-output name=pull_request_return_code::%s" % pull_request_return_code
|
"::set-output name=pull_request_return_code::%s" % pull_request_return_code
|
||||||
)
|
)
|
||||||
print("::set-env name=PULL_REQUEST_URL::%s" % html_url)
|
set_env("PULL_REQUEST_URL", html_url)
|
||||||
print("::set-output name=pull_request_url::%s" % html_url)
|
print("::set-output name=pull_request_url::%s" % html_url)
|
||||||
|
|
||||||
if assignees:
|
if assignees:
|
||||||
@@ -163,19 +168,12 @@ def create_pull_request(
|
|||||||
ASSIGNEES_URL = "%s/%s/assignees" % (ISSUE_URL, number)
|
ASSIGNEES_URL = "%s/%s/assignees" % (ISSUE_URL, number)
|
||||||
response = requests.post(ASSIGNEES_URL, json=data, headers=HEADERS)
|
response = requests.post(ASSIGNEES_URL, json=data, headers=HEADERS)
|
||||||
if response.status_code != 201:
|
if response.status_code != 201:
|
||||||
abort_if_fail(
|
abort_if_fail(response, "Unable to create assignees")
|
||||||
"Unable to create assignees: %s: %s, %s"
|
|
||||||
% (
|
|
||||||
response.status_code,
|
|
||||||
response.reason,
|
|
||||||
response.json().get("message", ""),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
assignees_return_code = (
|
assignees_return_code = (
|
||||||
0 if response.status_code == 201 else response.status_code
|
0 if response.status_code == 201 else response.status_code
|
||||||
)
|
)
|
||||||
print("::set-env name=ASSIGNEES_RETURN_CODE::%s" % assignees_return_code)
|
set_env("ASSIGNEES_RETURN_CODE", assignees_return_code)
|
||||||
print("::set-output name=assignees_return_code::%s" % assignees_return_code)
|
print("::set-output name=assignees_return_code::%s" % assignees_return_code)
|
||||||
|
|
||||||
if reviewers or team_reviewers:
|
if reviewers or team_reviewers:
|
||||||
@@ -197,14 +195,7 @@ def create_pull_request(
|
|||||||
data = {"reviewers": reviewers, "team_reviewers": team_reviewers}
|
data = {"reviewers": reviewers, "team_reviewers": team_reviewers}
|
||||||
response = requests.post(REVIEWERS_URL, json=data, headers=HEADERS)
|
response = requests.post(REVIEWERS_URL, json=data, headers=HEADERS)
|
||||||
if response.status_code != 201:
|
if response.status_code != 201:
|
||||||
abort_if_fail(
|
abort_if_fail(response, "Unable to assign reviewers")
|
||||||
"Unable to assign reviewers: %s: %s, %s"
|
|
||||||
% (
|
|
||||||
response.status_code,
|
|
||||||
response.reason,
|
|
||||||
response.json().get("message", ""),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
reviewers_return_code = (
|
reviewers_return_code = (
|
||||||
0 if response.status_code == 201 else response.status_code
|
0 if response.status_code == 201 else response.status_code
|
||||||
@@ -213,7 +204,7 @@ def create_pull_request(
|
|||||||
print("::group::github reviewers response")
|
print("::group::github reviewers response")
|
||||||
print(response)
|
print(response)
|
||||||
print("::endgroup::github reviewers response")
|
print("::endgroup::github reviewers response")
|
||||||
print("::set-env name=REVIEWERS_RETURN_CODE::%s" % reviewers_return_code)
|
set_env("REVIEWERS_RETURN_CODE", reviewers_return_code)
|
||||||
print("::set-output name=reviewers_return_code::%s" % reviewers_return_code)
|
print("::set-output name=reviewers_return_code::%s" % reviewers_return_code)
|
||||||
print("Add reviewers return code: %s" % reviewers_return_code)
|
print("Add reviewers return code: %s" % reviewers_return_code)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user