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 cb61b27 commit 4cd2c6aCopy full SHA for 4cd2c6a
.github/workflows/transfer-approved-submission.yml
@@ -85,6 +85,17 @@ jobs:
85
"ℹ️ This issue remains open here for visibility, but ongoing tracking happens in the private repository."
86
].join("\n\n");
87
88
+ // --- Ensure the public issue is unlocked before commenting ---
89
+ try {
90
+ await github.rest.issues.unlock({
91
+ owner: repoOwner,
92
+ repo: publicRepo,
93
+ issue_number
94
+ });
95
+ } catch (e) {
96
+ // ignore if already unlocked
97
+ }
98
+
99
await github.rest.issues.createComment({
100
owner: repoOwner,
101
repo: publicRepo,
0 commit comments