You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-08-07 23:02:56 +03:00
Fix badly typed output
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@@ -47,7 +47,7 @@ jobs:
|
|||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v7
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
RELEASE_ID: ${{ steps.release.outputs.id }}
|
RELEASE_ID: ${{ steps.draft-release.outputs.id }}
|
||||||
DEPENDENCY: ${{ inputs.include-changes }}
|
DEPENDENCY: ${{ inputs.include-changes }}
|
||||||
VERSION: ${{ steps.draft-release.outputs.tag_name }}
|
VERSION: ${{ steps.draft-release.outputs.tag_name }}
|
||||||
with:
|
with:
|
||||||
|
@@ -11,7 +11,7 @@ async function getReleases(github, dependency) {
|
|||||||
const upstreamPackageJson = getDependencyPackageJson(dep);
|
const upstreamPackageJson = getDependencyPackageJson(dep);
|
||||||
const [owner, repo] = upstreamPackageJson.repository.url.split("/").slice(-2);
|
const [owner, repo] = upstreamPackageJson.repository.url.split("/").slice(-2);
|
||||||
|
|
||||||
const response = await github.request("GET /repos/{owner}/{repo}/releases?per_page={per_page}", {
|
const response = await github.rest.repos.listReleases({
|
||||||
owner,
|
owner,
|
||||||
repo,
|
repo,
|
||||||
per_page: 100,
|
per_page: 100,
|
||||||
|
Reference in New Issue
Block a user