diff --git a/.github/actions/copy-release-to-another-repo/lib/index.js b/.github/actions/copy-release-to-another-repo/lib/index.js index cb59777b1..f4603efd7 100644 --- a/.github/actions/copy-release-to-another-repo/lib/index.js +++ b/.github/actions/copy-release-to-another-repo/lib/index.js @@ -3915,8 +3915,7 @@ async function createRelease(owner, repo, release) { repo, tag_name: release.tag_name, name: release.name, - body: release.body, - target_commitish: release.target_commitish, + body: '', prerelease: release.prerelease, draft: false, }); diff --git a/.github/actions/copy-release-to-another-repo/src/index.ts b/.github/actions/copy-release-to-another-repo/src/index.ts index f946822c1..6cabe99e2 100644 --- a/.github/actions/copy-release-to-another-repo/src/index.ts +++ b/.github/actions/copy-release-to-another-repo/src/index.ts @@ -61,8 +61,7 @@ async function createRelease(owner: string, repo: string, release: ReposGetRelea repo, tag_name: release.tag_name, name: release.name, - body: release.body, - target_commitish: release.target_commitish, + body: '', prerelease: release.prerelease, draft: false, })