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 9a0a576 commit e47d0a4Copy full SHA for e47d0a4
1 file changed
.github/workflows/create-porting-issue.yml
@@ -26,12 +26,12 @@ jobs:
26
? "machine.py"
27
: "machine";
28
29
- if (context.event.action === "opened") {
+ if (context.payload.action === "opened") {
30
await github.rest.issues.create({
31
owner,
32
repo: otherRepo,
33
title: "Test auto-porting issue",
34
- body: "This is a test",
+ body: "This is a test. Porting from ${currentRepo} to ${otherRepo}",
35
labels: ["porting"]
36
});
37
}
0 commit comments