We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91cecdc commit 39fd535Copy full SHA for 39fd535
.github/workflows/create-cherry-pick-pr.yml
@@ -115,7 +115,19 @@ jobs:
115
head: pickBranch,
116
title,
117
body,
118
+ });
119
+
120
+ await github.rest.issues.addAssignees({
121
+ owner: context.repo.owner,
122
+ repo: context.repo.repo,
123
+ issue_number: newPr.data.number,
124
assignees: ["DanielRosenwasser"],
125
126
127
+ await github.rest.pulls.requestReviewers({
128
129
130
+ pull_number: newPr.data.number,
131
reviewers: ["DanielRosenwasser", REQUESTING_USER],
132
});
133
0 commit comments